Function: FREE-LIST-POINTER

Documentation

Returns a pointer to the cell containing the free list start.

Source

(defun free-list-pointer (size-class)
  "Returns a pointer to the cell containing the free list start."
  (+ +pointer-size+ ; skip heap end cell
     (* size-class +pointer-size+)))
Source Context