thread.getStackDump
| Syntax |
thread.getStackDump (@adrTable)
|
| Params |
adrTable is the address of a table object that's to receive the stack dump information.
|
| Action |
Creates or empties the table at adrTable, and fills it with stack frame information.
|
| Returns |
True
|
| Examples |
In the QuickScript window, run this script: thread.getStackDump (@temp.stackDump) Jump to temp.stackDump to view the stack information. |
| Notes |
The parenthetical number following each stack "level" in the table is the line number in the script that is executing. This verb is implemented as a script, based on thread.getStats. It is new in Frontier 8.
|
| See Also |
thread.getStats
|