| 370 | Arena(PageMap<ChunkType>* pm) : page_map_(pm) {} |
| 371 | |
| 372 | ~Arena() { |
| 373 | for (auto it = bins_.begin(); it != bins_.end(); ++it) { |
| 374 | delete it->second; |
| 375 | } |
| 376 | bins_.clear(); |
| 377 | } |
| 378 | |
| 379 | size_t BatchAllocate(size_t num, size_t bin_size, void** ret) { |
| 380 | Bin<ChunkType> *bin = nullptr; |