Returns the first block on the free list of the specified size class.
(defmethod free-list-start ((heap free-list-heap) &optional (size-class 0))
"Returns the first block on the free list of the specified size class."
(aref (slot-value heap 'starts) size-class))
Source Context