#include "UT_API.h"#include <stdio.h>#include "UT_Signal.h"#include "UT_Debug.h"Go to the source code of this file.
Classes | |
| class | UT_StackTrace |
Defines | |
| #define | TRACE_STACK() { UT_StackTrace tr; tr.doTraceback(); } |
| #define | TRACE_STACK_LIMIT(lm) |
| #define | TRACE_STACK_FILE(fp) { UT_StackTrace tr(fp); tr.doTraceback(); } |
| #define | TRACE_STACK_COND(cond) { UT_StackTrace tr; tr.doCondTraceback(cond); } |
| #define TRACE_STACK | ( | ) | { UT_StackTrace tr; tr.doTraceback(); } |
Definition at line 46 of file UT_StackTrace.h.
| #define TRACE_STACK_COND | ( | cond | ) | { UT_StackTrace tr; tr.doCondTraceback(cond); } |
Definition at line 50 of file UT_StackTrace.h.
| #define TRACE_STACK_FILE | ( | fp | ) | { UT_StackTrace tr(fp); tr.doTraceback(); } |
Definition at line 49 of file UT_StackTrace.h.
| #define TRACE_STACK_LIMIT | ( | lm | ) |
Value:
{ UT_StackTrace tr; tr.setMaxStackLevel(lm); \
tr.doTraceback(); }
Definition at line 47 of file UT_StackTrace.h.
1.5.9