mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-05 01:09:27 +01:00
Rename ia64_init() to tdep_init().
(Logical change 1.162)
This commit is contained in:
parent
8aee02a839
commit
684f85c8f1
2 changed files with 4 additions and 4 deletions
|
@ -46,8 +46,8 @@ unw_init_local (unw_cursor_t *cursor, ucontext_t *uc)
|
|||
struct cursor *c = (struct cursor *) cursor;
|
||||
unw_word_t sol;
|
||||
|
||||
if (unw.needs_initialization)
|
||||
ia64_init ();
|
||||
if (tdep_needs_initialization)
|
||||
tdep_init ();
|
||||
|
||||
#ifdef __hpux
|
||||
{
|
||||
|
|
|
@ -35,8 +35,8 @@ unw_init_remote (unw_cursor_t *cursor, unw_addr_space_t as, void *as_arg)
|
|||
#else /* !UNW_LOCAL_ONLY */
|
||||
struct cursor *c = (struct cursor *) cursor;
|
||||
|
||||
if (unw.needs_initialization)
|
||||
ia64_init ();
|
||||
if (tdep_needs_initialization)
|
||||
tdep_init ();
|
||||
|
||||
c->as = as;
|
||||
c->as_arg = as_arg;
|
||||
|
|
Loading…
Reference in a new issue