Changeset 5956


Ignore:
Timestamp:
Feb 22, 2007, 1:33:33 AM (18 years ago)
Author:
Gary Byers
Message:

Tweak ROOM output a little.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ccl/level-0/l0-misc.lisp

    r5366 r5956  
    292292      (flet ((k (n) (round n 1024)))
    293293        (princ "
    294                   Total Size             Free                 Used")
    295         (format t "~&Lisp Heap: ~12T~10D (~DK)  ~33T~10D (~DK)  ~54T~10D (~DK)"
     294                   Total Size             Free                 Used")
     295        (format t "~&Lisp Heap:~15t~10D (~DK)~35t~10D (~DK)~55t~10D (~DK)"
    296296                lispheap (k lispheap)
    297297                freebytes (k freebytes)
    298298                usedbytes (k usedbytes))
    299         (format t "~&Stacks:    ~12T~10D (~DK)  ~33T~10D (~DK)  ~54T~10D (~DK)"
     299        (format t "~&Stacks:~15t~10D (~DK)~35t~10D (~DK)~55t~10D (~DK)"
    300300                stack-total (k stack-total)
    301301                stack-free (k stack-free)
    302302                stack-used (k stack-used))
    303         (format t "~&Static: ~12T~10D (~DK)  ~33T~10D (~DK) ~54T~10D (~DK)"
     303        (format t "~&Static:~15t~10D (~DK)~35t~10D (~DK)~55t~10D (~DK)"
    304304                static (k static)
    305305                0 0
Note: See TracChangeset for help on using the changeset viewer.