mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-15 20:58:13 +01:00
(unwi_get_proc_name): Don't make it an arch-object. Drop "is_local" argument.
(Logical change 1.54)
This commit is contained in:
parent
7412722854
commit
e20ecc63b8
1 changed files with 5 additions and 6 deletions
|
@ -106,8 +106,7 @@ extern int UNWI_ARCH_OBJ(dyn_remote_find_proc_info) (unw_addr_space_t as,
|
||||||
extern void UNWI_ARCH_OBJ(dyn_remote_put_unwind_info) (unw_addr_space_t as,
|
extern void UNWI_ARCH_OBJ(dyn_remote_put_unwind_info) (unw_addr_space_t as,
|
||||||
unw_proc_info_t *pi,
|
unw_proc_info_t *pi,
|
||||||
void *arg);
|
void *arg);
|
||||||
extern int UNWI_ARCH_OBJ(get_proc_name) (unw_addr_space_t as,
|
extern int UNWI_OBJ(get_proc_name) (unw_addr_space_t as, unw_word_t ip,
|
||||||
unw_word_t ip, int is_local,
|
|
||||||
char *buf, size_t buf_len,
|
char *buf, size_t buf_len,
|
||||||
unw_word_t *offp, void *arg);
|
unw_word_t *offp, void *arg);
|
||||||
|
|
||||||
|
@ -129,8 +128,8 @@ extern int UNWI_ARCH_OBJ(get_proc_name) (unw_addr_space_t as,
|
||||||
#define unwi_dyn_remote_put_unwind_info(as,p,arg) \
|
#define unwi_dyn_remote_put_unwind_info(as,p,arg) \
|
||||||
UNWI_ARCH_OBJ(dyn_remote_put_unwind_info)(as, p, arg)
|
UNWI_ARCH_OBJ(dyn_remote_put_unwind_info)(as, p, arg)
|
||||||
|
|
||||||
#define unwi_get_proc_name(as,ip,l,b,s,o,arg) \
|
#define unwi_get_proc_name(as,ip,b,s,o,arg) \
|
||||||
UNWI_ARCH_OBJ(get_proc_name)(as, ip, l, b, s, o, arg)
|
UNWI_OBJ(get_proc_name)(as, ip, b, s, o, arg)
|
||||||
|
|
||||||
extern unw_dyn_info_list_t _U_dyn_info_list;
|
extern unw_dyn_info_list_t _U_dyn_info_list;
|
||||||
extern pthread_mutex_t _U_dyn_info_list_lock;
|
extern pthread_mutex_t _U_dyn_info_list_lock;
|
||||||
|
|
Loading…
Reference in a new issue