home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Moscow ML 1.31 / source code / mosml / src / runtime / debugcom.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-03  |  305 b   |  17 lines  |  [TEXT/R*ch]

  1. #ifndef _debug_
  2. #define _debug_
  3.  
  4. #include "misc.h"
  5. #include "mlvalues.h"
  6.  
  7. extern unsigned long event_count;
  8. extern value * trap_barrier;
  9. extern int enable_sigint;
  10.  
  11. enum { EVENT, BREAKPOINT, PROGRAM_START, PROGRAM_EXIT, TRAP_BARRIER };
  12.  
  13. void debugger_init P((char *));
  14. int debugger P((int event));
  15.  
  16. #endif
  17.