1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-06-29 04:31:45 +02:00

(unw_get_proc_name): Declare "offp" argument and pass it to unwi_get_proc_name().

(Logical change 1.59)
This commit is contained in:
mostang.com!davidm 2003-03-06 06:14:36 +00:00
parent 3532dd4a4c
commit 90c6107cae

View file

@ -26,9 +26,10 @@ 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->eip, buf, buf_len, c->as_arg);
return unwi_get_proc_name (c->as, c->eip, buf, buf_len, offp, c->as_arg);
}