Go to the source code of this file.
|
| #define | TRACE_ALL 0x0fff |
| |
| #define | TRACE_Opendir 0x0001 |
| |
| #define | TRACE_Open 0x0002 |
| |
| #define | TRACE_AIO 0x0004 |
| |
| #define | TRACE_Debug 0x0800 |
| |
| #define | QTRACE(act) OssTrace.What & TRACE_ ## act |
| |
| #define | TRACE(act, x) if (QTRACE(act)) {SYSTRACE(OssTrace., tident, epname, 0, x);} |
| |
| #define | TRACEReturn(type, ecode, msg) {TRACE(type, "err " <<ecode <<msg); return ecode;} |
| |
| #define | DEBUG(y) if (QTRACE(Debug)) {SYSTRACE(OssTrace., 0, epname, 0, y)} |
| |
| #define | EPNAME(x) static const char *epname = x; |
| |
| #define DEBUG |
( |
|
y | ) |
if (QTRACE(Debug)) {SYSTRACE(OssTrace., 0, epname, 0, y)} |
| #define EPNAME |
( |
|
x | ) |
static const char *epname = x; |
| #define QTRACE |
( |
|
act | ) |
OssTrace.What & TRACE_ ## act |
| #define TRACE |
( |
|
act, |
|
|
|
x |
|
) |
| if (QTRACE(act)) {SYSTRACE(OssTrace., tident, epname, 0, x);} |
| #define TRACE_Debug 0x0800 |
| #define TRACE_Open 0x0002 |
| #define TRACE_Opendir 0x0001 |
| #define TRACEReturn |
( |
|
type, |
|
|
|
ecode, |
|
|
|
msg |
|
) |
| {TRACE(type, "err " <<ecode <<msg); return ecode;} |