home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / oper_sys / presto / prest_04.lha / src / debug.h < prev    next >
Encoding:
C/C++ Source or Header  |  1989-06-06  |  186 b   |  12 lines

  1. extern Spinlock debug_lock;
  2.  
  3. class dstream {
  4.     int d_print_level;
  5.     int d_flush;
  6. public:
  7.     dstream (int print_level, int flush=1);
  8.     void operator<< (char* string);
  9. };
  10.  
  11. extern dstream dout;
  12.