Method: (NR-OBJECT-BYTES MARK-AND-SWEEP-HEAP)

Documentation

Returns the number of object bytes that must be handled by the garbage collector.

Source

(defmethod nr-object-bytes ((heap mark-and-sweep-heap))
  "Returns the number of object bytes that must be handled by the garbage
collector."
  (* (object-table-size (object-table heap))
     (min-block-size (object-table heap))))
Source Context