Austin English : ntdll: Make sure ill_handler() and bus_handler() are used on Sparc.
Module: wine Branch: master Commit: 51e4f9a5a6d5c3ec9364c0bbbd1feed2c282d7b5 URL: http://source.winehq.org/git/wine.git/?a=commit;h=51e4f9a5a6d5c3ec9364c0bbbd... Author: Austin English <austinenglish(a)gmail.com> Date: Mon Aug 23 11:09:08 2010 -0500 ntdll: Make sure ill_handler() and bus_handler() are used on Sparc. --- dlls/ntdll/signal_sparc.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/dlls/ntdll/signal_sparc.c b/dlls/ntdll/signal_sparc.c index 660bc9c..318e5a9 100644 --- a/dlls/ntdll/signal_sparc.c +++ b/dlls/ntdll/signal_sparc.c @@ -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
participants (1)
-
Alexandre Julliard