k2sandhu wrote:
> What exactly is fixed-sized allocation and variable-sized allocation?
> What is the difference between the two?
A fixed-size allocator assumes that all allocations are of some fixed size
(e.g. all allocations are 8 bytes).
A variable-size allocator must be able to handle allocation requests of
different sizes.