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

Alexandre Julliard julliard at winehq.org
Tue Aug 24 11:09:15 CDT 2010


Module: wine
Branch: master
Commit: 51e4f9a5a6d5c3ec9364c0bbbd1feed2c282d7b5
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=51e4f9a5a6d5c3ec9364c0bbbd1feed2c282d7b5

Author: Austin English <austinenglish at 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
 




More information about the wine-cvs mailing list