mirror of https://github.com/xemu-project/xemu.git
Restore ARM signal handler compilation on glibc < 2.5 (Blue Swirl).
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4641 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
4872aa135d
commit
5c49b363dc
|
@ -1320,7 +1320,11 @@ int cpu_signal_handler(int host_signum, void *pinfo,
|
||||||
unsigned long pc;
|
unsigned long pc;
|
||||||
int is_write;
|
int is_write;
|
||||||
|
|
||||||
|
#if (__GLIBC__ < 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ =< 3))
|
||||||
|
pc = uc->uc_mcontext.gregs[R15];
|
||||||
|
#else
|
||||||
pc = uc->uc_mcontext.arm_pc;
|
pc = uc->uc_mcontext.arm_pc;
|
||||||
|
#endif
|
||||||
/* XXX: compute is_write */
|
/* XXX: compute is_write */
|
||||||
is_write = 0;
|
is_write = 0;
|
||||||
return handle_cpu_signal(pc, (unsigned long)info->si_addr,
|
return handle_cpu_signal(pc, (unsigned long)info->si_addr,
|
||||||
|
|
Loading…
Reference in New Issue