Provides the recent function call history for the current thread. Arguments: None Returns: None
| Return Type | Function name | Arguments |
|---|---|---|
| void | CallHistory | (void) |
Declared in file: hzProcess.h
Defined in file : hzProcess.cpp
Function Logic:
Function body:
void CallHistory (void)
{
// Category: Diagnostics
//
// Provides the recent function call history for the current thread.
//
// Arguments: None
// Returns: None
hzProcess* phz ; // Current thread
phz = GetThreadInfo() ;
if (!phz)
Fatal("CallHistory. (tid=%u) cannot find it's own thread (no previous call to hzProcess contructor)\n", pthread_self()) ;
phz->CallHistory() ;
}