home *** CD-ROM | disk | FTP | other *** search
/ PC User 2001 August / APC_Aug2001_CD2.iso / features / j2sdk / files / linux / j2sdklin.bin / jdk1.3.1 / include-old / debug.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-05-06  |  538 b   |  33 lines

  1. /*
  2.  * @(#)debug.h    1.20 00/02/02
  3.  *
  4.  * Copyright 1994-2000 Sun Microsystems, Inc. All Rights Reserved.
  5.  * 
  6.  * This software is the proprietary information of Sun Microsystems, Inc.  
  7.  * Use is subject to license terms.
  8.  * 
  9.  */
  10.  
  11. /*
  12.  * Debugging hooks    1/22/92
  13.  */
  14.  
  15. #ifndef _JAVASOFT_DEBUG_H_
  16. #define _JAVASOFT_DEBUG_H_
  17.  
  18. #include <stdarg.h>
  19.  
  20. #include "bool.h"
  21.  
  22. struct sys_thread;
  23.  
  24. void DumpThreads(void);
  25. void DumpMonitors(void);
  26.  
  27.  
  28. void HandleSignalInVM(bool_t noncritical);
  29.  
  30. void panic (const char *, ...);
  31.  
  32. #endif /* !_JAVASOFT_DEBUG_H_ */
  33.