Commit 51e4f9a5 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

ntdll: Make sure ill_handler() and bus_handler() are used on Sparc.

parent 7b37a6d4
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment