Changeset 12935
- Timestamp:
- Oct 9, 2009, 5:22:10 AM (15 years ago)
- File:
-
- 1 edited
-
branches/working-0711/ccl/lib/misc.lisp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/working-0711/ccl/lib/misc.lisp
r12893 r12935 972 972 (incf total-physical-vector-size (aref vector-physical-sizes i))) 973 973 (setq total-size (+ total-cons-size total-physical-vector-size)) 974 (format out "~&CONS~36t~12d~48t~16d~16d~8,2f%" nconses total-cons-size total-cons-size 975 (* 100 (/ total-cons-size total-size))) 974 (unless (zerop nconses) 975 (format out "~&CONS~36t~12d~48t~16d~16d~8,2f%" nconses total-cons-size total-cons-size 976 (* 100 (/ total-cons-size total-size)))) 976 977 (dotimes (i (length nvectors)) 977 978 (let ((count (aref nvectors i)) … … 984 985 (* 100.0 (/ psizes total-size)))))) 985 986 (format out "~& Total sizes: ~49t~16d~16d" (+ total-cons-size total-vector-size) (+ total-cons-size total-physical-vector-size)))) 986 987 987 988 ;; The number of words to allocate for static conses when the user requests 988 989 ;; one and we don't have any left over
Note:
See TracChangeset
for help on using the changeset viewer.
