Returns a pointer to the cell containing the free list start.
(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