| 626 | MemBlock* block; |
| 627 | |
| 628 | MemBigHunk(MemBigHunk** top, size_t l) |
| 629 | : next(NULL), prev(NULL), length(l), |
| 630 | block(new(((UCHAR*) this) + hdrSize()) MemBlock(MemBlock::HUGE_BLOCK, length - hdrSize())) |
| 631 | { |
| 632 | SemiDoubleLink::push(top, this); |
| 633 | } |
| 634 | |
| 635 | #ifdef MEM_DEBUG |
| 636 | void print_contents(FILE* file, MemPool* pool, bool used_only, |