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

This commit is contained in:
Austin English 2010-08-23 11:09:08 -05:00 committed by Alexandre Julliard
parent 7b37a6d47e
commit 51e4f9a5a6
1 changed files with 2 additions and 0 deletions

View File

@ -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