5 #include <ctu_backtrace_api.h>
29 #define BT_PRI_ADDRESS PRIuLEAST64
108 CT_BACKTRACE_API
void bt_init(
void);
119 CT_BACKTRACE_API
const char *
bt_backend(
void);
143 #if CT_CPLUSPLUS >= 202002L
146 concept AddressCallback = requires (T it) {
150 void read(AddressCallback
auto& fn) {
151 using FnType = decltype(fn);
154 auto& fn = *
static_cast<FnType*
>(user);
156 },
static_cast<void*
>(&fn));
#define IN_NOTNULL
annotate a parameter as not being null
#define STA_RET_STRING
annotate the return value as a null terminated string
#define CT_CONSTFN
mark a function as const, has no side effects and always returns the same value for the same argument...
CT_BACKTRACE_API void bt_init(void)
initialize the backtrace backend
uint_least64_t bt_address_t
an address of a symbol
void(* bt_trace_t)(bt_address_t frame, void *user)
user callback for bt_read
void(* bt_error_begin_t)(size_t error, void *user)
called once when a system error occurs
void(* bt_error_end_t)(void *user)
called once when a system error occurs
CT_BACKTRACE_API bt_resolve_t bt_resolve_symbol(bt_address_t frame, bt_symbol_t *symbol)
resolve a frame to a symbol
bt_resolve_t
how much of a frame was reconstructed
CT_BACKTRACE_API void bt_update(void)
update the loaded module cache
CT_BACKTRACE_API void bt_read(bt_trace_t callback, void *user)
get a backtrace from the current location using a callback
STA_RET_STRING CT_CONSTFN CT_BACKTRACE_API const char * bt_backend(void)
get the backtrace backend name
CT_BACKTRACE_API bt_error_t gSystemError
the global system error handler
@ eResolveAll
all information was resolved
@ eResolveDemangledName
the symbol name was demangled
@ eResolveLine
the line number was found
@ eResolveNothing
nothing was resolved
@ eResolveName
the symbol name was found
@ eResolveFile
the file path was found
#define CT_ENUM_FLAGS(X, T)
uint_fast32_t source_line_t
the line number in the source file
system error handling callbacks
bt_trace_t next
called once for each frame
bt_error_begin_t begin
called once when a system error occurs
void * user
user data to pass to the callbacks
bt_error_end_t end
called after all frames have been collected
text_t name
a buffer to hold the name
text_t path
a buffer to hold the path to the file
source_line_t line
the line number