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

Source

(defmethod heap-start ((heap free-list-heap))
  ;; A free-list-heap starts with an array of pointers to the first element
  ;; of each free list; the heap blocks start after that array.
  (free-list-pointer (nr-free-lists heap)))
Source Context