Public Member Functions | |
| virtual void | build ()=0 |
| virtual StackTrace | stackTrace (int first_function=0)=0 |
| Character string indicating the call stack. | |
| virtual StackTrace | stackTraceFunction (int function_index)=0 |
| Name of a function in the call stack. | |
Definition at line 32 of file arccore/src/base/arccore/base/IStackTraceService.h.
|
inlinevirtual |
Definition at line 36 of file arccore/src/base/arccore/base/IStackTraceService.h.
|
pure virtual |
Character string indicating the call stack.
first_function indicates the number in the stack of the first function displayed in the trace.
Referenced by Arcane::Platform::dumpStackTrace(), and Arcane::Platform::getStackTrace().
|
pure virtual |
Name of a function in the call stack.
function_index indicates the position of the function to return in the call stack. For example, 0 indicates the current function, 1 the previous one (i.e., the one calling this method).