All blocks in a simple free list heap have the same size.
(defclass simple-free-list-heap (free-list-heap)
()
(:default-initargs
:nr-free-lists 1
:min-block-size 16)
(:documentation "All blocks in a simple free list heap have the same size."))
Source Context