cosmopolitan/libc/log/backtrace.internal.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
429 B
C
Raw Normal View History

2020-09-03 12:44:37 +00:00
#ifndef COSMOPOLITAN_LIBC_LOG_BACKTRACE_H_
#define COSMOPOLITAN_LIBC_LOG_BACKTRACE_H_
#include "libc/nexgen32e/stackframe.h"
#include "libc/runtime/symbols.internal.h"
2020-09-03 12:44:37 +00:00
COSMOPOLITAN_C_START_
void ShowBacktrace(int, const struct StackFrame *);
int PrintBacktraceUsingSymbols(int, const struct StackFrame *,
2020-09-03 12:44:37 +00:00
struct SymbolTable *);
COSMOPOLITAN_C_END_
#endif /* COSMOPOLITAN_LIBC_LOG_BACKTRACE_H_ */