Manage physical memory (in blocks). Possibly implemented as derivative of `std::allocator`. `alloc` _must_ support - [ ] returning the highest possible memory address - [ ] limiting memory address to lower regions - [ ] returning aligned addresses - [ ] reentrancy - [ ] thread-safety `free` _must_ support - [ ] recognizing invalid parameters - [ ] sorting by address - [ ] reentrancy - [ ] thread-safety
Manage physical memory (in blocks). Possibly implemented as derivative of
std::allocator.allocmust supportfreemust support