ntdll: Make sure ill_handler() and bus_handler() are used on Sparc.
This commit is contained in:
parent
7b37a6d47e
commit
51e4f9a5a6
|
@ -797,8 +797,10 @@ void signal_init_process(void)
|
|||
|
||||
sig_act.sa_sigaction = segv_handler;
|
||||
if (sigaction( SIGSEGV, &sig_act, NULL ) == -1) goto error;
|
||||
sig_act.sa_sigaction = ill_handler;
|
||||
if (sigaction( SIGILL, &sig_act, NULL ) == -1) goto error;
|
||||
#ifdef SIGBUS
|
||||
sig_act.sa_sigaction = bus_handler;
|
||||
if (sigaction( SIGBUS, &sig_act, NULL ) == -1) goto error;
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in New Issue