1
0
Fork 0
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:
mostang.com!davidm 2004-01-20 23:32:28 +00:00
parent 54ef1c8712
commit c1bbbb2a3a

View file

@ -1,5 +1,5 @@
/* libunwind - a platform-independent unwind library /* 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> Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
This file is part of libunwind. 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, extern void UNWI_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_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, extern int UNWI_OBJ(get_proc_name) (unw_addr_space_t as, unw_word_t ip,
char *buf, size_t buf_len, char *buf, size_t buf_len,
unw_word_t *offp, void *arg); 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) \ #define unwi_dyn_remote_put_unwind_info(as,p,arg) \
UNWI_OBJ(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) \ #define unwi_get_proc_name(as,ip,b,s,o,arg) \
UNWI_OBJ(get_proc_name)(as, ip, b, s, o, arg) UNWI_OBJ(get_proc_name)(as, ip, b, s, o, arg)