dwarf-assembly/shared/context_struct.h

14 lines
325 B
C
Raw Normal View History

#include <stdint.h>
typedef struct {
uintptr_t rip, rsp, rbp;
} unwind_context_t;
2018-04-27 11:05:34 +02:00
typedef uintptr_t (*deref_func_t)(uintptr_t);
typedef unwind_context_t (*_fde_func_t)(unwind_context_t, uintptr_t);
typedef unwind_context_t (*_fde_func_with_deref_t)(
unwind_context_t,
uintptr_t,
deref_func_t);