Class: SIMPLE-FREE-LIST-HEAP

Documentation

All blocks in a simple free list heap have the same size.

Hierachy

Precedence List

Sub Classes

  • OBJECT-TABLE

Source

(defclass simple-free-list-heap (free-list-heap)
  ()
  (:default-initargs
   :nr-free-lists 1
   :min-block-size 16)
  (:documentation "All blocks in a simple free list heap have the same size."))
Source Context