mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-27 01:27:39 +01:00
(unw_get_proc_name): Add "offp" argument.
(Logical change 1.45)
This commit is contained in:
parent
bebd76e90b
commit
42cfe4f411
1 changed files with 6 additions and 4 deletions
|
@ -1,5 +1,5 @@
|
|||
/* libunwind - a platform-independent unwind library
|
||||
Copyright (C) 2001-2002 Hewlett-Packard Co
|
||||
Copyright (C) 2001-2003 Hewlett-Packard Co
|
||||
Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
|
||||
|
||||
This file is part of libunwind.
|
||||
|
@ -26,10 +26,12 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|||
#include "unwind_i.h"
|
||||
|
||||
int
|
||||
unw_get_proc_name (unw_cursor_t *cursor, char *buf, size_t buf_len)
|
||||
unw_get_proc_name (unw_cursor_t *cursor, char *buf, size_t buf_len,
|
||||
unw_word_t *offp)
|
||||
{
|
||||
struct cursor *c = (struct cursor *) cursor;
|
||||
|
||||
return unwi_get_proc_name (c->as, c->ip, c->as == unw_local_addr_space,
|
||||
buf, buf_len, c->as_arg);
|
||||
return unwi_get_proc_name (c->as, c->ip,
|
||||
c->as == unw_local_addr_space,
|
||||
buf, buf_len, offp, c->as_arg);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue