10 lines
434 B
Markdown
10 lines
434 B
Markdown
# stack.h
|
|
|
|
Functions to extract data from the call stack.
|
|
|
|
# `stack_dump_call_info(rip, symbol)` - function (void)
|
|
Logs information about a call.
|
|
Give this function the **_rip_** of the call and the related **_symbol_**, to make it happy.
|
|
|
|
# `stack_trace_call_stack(rbp)` - function (void)
|
|
Analyses the stack and recursively dumps information about all calls until it hits a call to `_start` or fails to resolve the calls symbol name. |