mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-26 09:07:38 +01:00
Declare functions such that it is possible to take their addresses.
(Logical change 1.162)
This commit is contained in:
parent
b5d64dabf3
commit
6bcc75010b
1 changed files with 4 additions and 6 deletions
|
@ -69,12 +69,10 @@ struct cursor
|
||||||
|
|
||||||
/* Platforms that support UNW_INFO_FORMAT_TABLE need to define
|
/* Platforms that support UNW_INFO_FORMAT_TABLE need to define
|
||||||
tdep_search_unwind_table. */
|
tdep_search_unwind_table. */
|
||||||
#define tdep_search_unwind_table(a,b,c,d,e,f) \
|
#define tdep_search_unwind_table UNW_ARCH_OBJ(search_unwind_table)
|
||||||
UNW_ARCH_OBJ(search_unwind_table) (a,b,c,d,e,f)
|
#define tdep_find_proc_info UNW_ARCH_OBJ(find_proc_info)
|
||||||
#define tdep_find_proc_info(as,ip,pi,n,a) \
|
#define tdep_put_unwind_info UNW_ARCH_OBJ(put_unwind_info)
|
||||||
UNW_ARCH_OBJ(find_proc_info) (as,ip,pi,n,a)
|
#define tdep_uc_addr UNW_ARCH_OBJ(uc_addr)
|
||||||
#define tdep_put_unwind_info(a,b,c) UNW_ARCH_OBJ(put_unwind_info)(a,b,c)
|
|
||||||
#define tdep_uc_addr(uc,reg) UNW_ARCH_OBJ(uc_addr)(uc,reg)
|
|
||||||
|
|
||||||
extern int tdep_search_unwind_table (unw_addr_space_t as, unw_word_t ip,
|
extern int tdep_search_unwind_table (unw_addr_space_t as, unw_word_t ip,
|
||||||
unw_dyn_info_t *di, unw_proc_info_t *pi,
|
unw_dyn_info_t *di, unw_proc_info_t *pi,
|
||||||
|
|
Loading…
Reference in a new issue