mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-05 01:09:27 +01:00
(unwi_dyn_validate_cache): Declare.
(Logical change 1.154)
This commit is contained in:
parent
54ef1c8712
commit
c1bbbb2a3a
1 changed files with 5 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
/* libunwind - a platform-independent unwind library
|
||||
Copyright (C) 2001-2003 Hewlett-Packard Co
|
||||
Copyright (C) 2001-2004 Hewlett-Packard Co
|
||||
Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
|
||||
|
||||
This file is part of libunwind.
|
||||
|
@ -188,6 +188,7 @@ extern int UNWI_OBJ(dyn_remote_find_proc_info) (unw_addr_space_t as,
|
|||
extern void UNWI_OBJ(dyn_remote_put_unwind_info) (unw_addr_space_t as,
|
||||
unw_proc_info_t *pi,
|
||||
void *arg);
|
||||
extern int UNWI_OBJ(dyn_validate_cache) (unw_addr_space_t as, void *arg);
|
||||
extern int UNWI_OBJ(get_proc_name) (unw_addr_space_t as, unw_word_t ip,
|
||||
char *buf, size_t buf_len,
|
||||
unw_word_t *offp, void *arg);
|
||||
|
@ -210,6 +211,9 @@ extern int UNWI_OBJ(get_proc_name) (unw_addr_space_t as, unw_word_t ip,
|
|||
#define unwi_dyn_remote_put_unwind_info(as,p,arg) \
|
||||
UNWI_OBJ(dyn_remote_put_unwind_info)(as, p, arg)
|
||||
|
||||
#define unwi_dyn_validate_cache(as, arg) \
|
||||
UNWI_OBJ(dyn_validate_cache)(as, arg)
|
||||
|
||||
#define unwi_get_proc_name(as,ip,b,s,o,arg) \
|
||||
UNWI_OBJ(get_proc_name)(as, ip, b, s, o, arg)
|
||||
|
||||
|
|
Loading…
Reference in a new issue