| 43 | : Chunk<CPUChunk>(chunk_size, slot_size) {} |
| 44 | |
| 45 | ~CPUChunk() { |
| 46 | port::AlignedFree(start_); |
| 47 | } |
| 48 | |
| 49 | void GetMemBlock() override { |
| 50 | start_ = (char *)port::AlignedMalloc(chunk_size_, kPageSize); |
nothing calls this directly
no test coverage detected