home *** CD-ROM | disk | FTP | other *** search
/ norge.freeshell.org (192.94.73.8) / 192.94.73.8.tar / 192.94.73.8 / pub / sdf / faq / TECHIES / 06 < prev    next >
Text File  |  2003-11-09  |  669b  |  20 lines

  1. [06] HOW CAN I ENABLE DEBUGGING WITH OPENLISP?
  2.  
  3.      For more information, check out /usr/pkg/uxlisp/doc/olus.txt
  4.      (pgs. 71 & 72)
  5.  
  6.      First, you have to activate/load the debugger by calling '(debug t)'
  7.      You can then get help in the debugger by typing '?'
  8.  
  9.      There are several functions used for profiling functions:
  10.  
  11.      'profile'          (profile function-name)
  12.      'profile-all'      (profile-all)
  13.      'unprofile'        (unprofile function-name)
  14.  
  15.      Reporting is handled by 'profile-log' which can be set with 'time
  16.      'call or 'not-used depending on what you want to see.
  17.  
  18.      Thanks to 'water' Brian T. Rice for 'discovering' the debugger
  19.  
  20.