1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-06-16 15:01:45 +02:00

(sighandler): Adjust for <asm/rse.h> -> <ia64/rse.h> changes.

(Logical change 1.226)
This commit is contained in:
mostang.com!davidm 2004-05-05 01:59:36 +00:00
parent f1c025e957
commit 2d2129a5bc

View file

@ -125,8 +125,8 @@ sighandler (int signal, void *siginfo, void *context)
printf ("sighandler: signal %d sp=%p nat=%08lx pr=%lx\n",
signal, &sp, uc->uc_mcontext.sc_nat, uc->uc_mcontext.sc_pr);
sof = uc->uc_mcontext.sc_cfm & 0x7f;
bsp = ia64_rse_skip_regs ((unsigned long *) uc->uc_mcontext.sc_ar_bsp,
-sof);
bsp = (unsigned long *) ia64_rse_skip_regs (uc->uc_mcontext.sc_ar_bsp,
-sof);
}
#elif defined(__hpux)
if (__uc_get_ar (uc, UNW_IA64_AR_BSP - UNW_IA64_AR, &bsp) != 0)