Hello,
Error in KERNEL::UNDEFINED-SYMBOL-ERROR-HANDLER: the function LISP::DYNAMIC-SPACE-USAGE is undefined. [Condition of type UNDEFINED-FUNCTION]
Hm, running the listener works for me on a debian-installed 19c on x86. My mcclim cvs checkout has #+cmu(lisp::dynamic-usage), though, and no reference at all to dynamic-space-usage. Is that a modified tree? Are you testing on another platform?
This change was erroneosly submitted by me in patches for SCL, sorry. The fix:
* Revert function 'dynamic-space-usage to 'dynamic-usage.
Regards Douglas Crosher
Index: Apps/Listener/listener.lisp =================================================================== RCS file: /project/mcclim/cvsroot/mcclim/Apps/Listener/listener.lisp,v retrieving revision 1.23 diff -u -r1.23 listener.lisp --- Apps/Listener/listener.lisp 15 Mar 2006 22:56:54 -0000 1.23 +++ Apps/Listener/listener.lisp 20 Mar 2006 11:11:57 -0000 @@ -78,7 +78,7 @@ #-(or allegro cmu scl) (getenv "USER") "luser")) ; sorry.. (sitename (machine-instance)) - (memusage #+(or cmu scl) (lisp::dynamic-space-usage) + (memusage #+(or cmu scl) (lisp::dynamic-usage) #+sbcl (sb-kernel:dynamic-usage) #+lispworks (getf (system:room-values) :total-allocated) #+openmcl (+ (ccl::%usedbytes) (ccl::%freebytes))