| 21 | static bool inited; |
| 22 | |
| 23 | void block_allocator::flush_all() |
| 24 | { |
| 25 | for (block_allocator* allocator = _head_alloc; allocator != NULL; |
| 26 | allocator = allocator->_next_alloc) |
| 27 | { |
| 28 | allocator->flush(); |
| 29 | } |
| 30 | } |
| 31 | |
| 32 | block_allocator::block_allocator(U32 a0, U32 a1) |
| 33 | { |