#include "monitors.h"Include dependency graph for output.h:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Defines | |
| #define | debug Debug |
| #define | unsafe_debug UnsafeDebug |
| #define | LeaveRelease ((void)0) |
Functions | |
| void | Debug (const T &t) |
| void | Debug (const T1 &t1, const T2 &t2) |
| void | UnsafeDebug (const T1 &t1, const T2 &t2) |
| void | UnsafeDebug (const T1 &t1, const T2 &t2, const T3 &t3) |
| void | Debug (const T1 &t1, const T2 &t2, const T3 &t3) |
| void | Debug (const T1 &t1, const T2 &t2, const T3 &t3, const T4 &t4) |
Variables | |
| ofstream | traceOut |
| file for debug tracing. More... | |
|
|
|
|
|
Definition at line 52 of file output.h. Referenced by BackgroundThread(), ClassLoadEvent(), ClassUnloadEvent(), CreateBackgroundThread(), GetSocketDescriptor(), InitializeCommunications(), JVM_OnLoad(), NotifyEvent(), ThreadDump(), and ThreadEndHandler().
|
|
|
Definition at line 53 of file output.h. Referenced by NotifyEvent(), ShutdownCommunications(), ShutdownMonitors(), and ThreadDump().
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Definition at line 87 of file output.h. 00088 {
00089 LeaveRelease;
00090 traceOut << t1 << "\t" << t2 << "\t" << t3 << endl;
00091 }
|
|
|
Definition at line 80 of file output.h. 00081 {
00082 LeaveRelease;
00083 traceOut << t1 << "\t" << t2 << endl;
00084 }
|
|
|
file for debug tracing.
|
1.2.8.1 written by Dimitri van Heesch,
© 1997-2001