Method: (FREE-LIST-START FREE-LIST-HEAP)

Documentation

Returns the first block on the free list of the specified size class.

Source

(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