Fix to compile on 32bit kFreeBSD
This commit is contained in:
parent
209f23cc6e
commit
ea795c4040
|
@ -71,8 +71,12 @@ RETSIGTYPE zm_die_handler(int signal)
|
|||
#else
|
||||
ip = (void *)(uc->uc_mcontext.gregs[REG_RIP]);
|
||||
#endif
|
||||
#else
|
||||
#ifdef __FreeBSD_kernel__
|
||||
ip = (void *)(uc->uc_mcontext.mc_eip);
|
||||
#else
|
||||
ip = (void *)(uc->uc_mcontext.gregs[REG_EIP]);
|
||||
#endif
|
||||
#endif // defined(__x86_64__)
|
||||
|
||||
// Print the signal address and instruction pointer if available
|
||||
|
|
Loading…
Reference in New Issue