Changeset 3899
- Timestamp:
- 09/15/08 15:14:44 (2 months ago)
- Files:
-
- trunk/projects/bos/m2/allocation.lisp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/projects/bos/m2/allocation.lisp
r3895 r3899 25 25 (defmethod print-object ((allocation-area allocation-area) stream) 26 26 (print-unreadable-object (allocation-area stream :type t) 27 (format stream "~a x ~a ~:[inactive~;active~] free: ~sID: ~a"27 (format stream "~a x ~a ~:[inactive~;active~] ID: ~a" 28 28 (allocation-area-width allocation-area) 29 29 (allocation-area-height allocation-area) 30 (allocation-area-active-p allocation-area) 31 (if (slot-boundp allocation-area 'free-m2s) 32 (allocation-area-free-m2s allocation-area) 33 :unbound) 30 (allocation-area-active-p allocation-area) 34 31 (store-object-id allocation-area)))) 35 32
