diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-11-08 14:25:03 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-11-08 14:25:03 +0000 |
commit | ec6338bac30f982c16c23106edcf1ce4a04da575 (patch) | |
tree | eb42654dd53839e7d6b74d4d7c071be0ff533ae5 /darwin-user/signal.c | |
parent | 838104f60845adfa3ff5ad30e7f3a28c76f42bea (diff) |
removed obsolete x86 code copy support
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3551 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'darwin-user/signal.c')
-rw-r--r-- | darwin-user/signal.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/darwin-user/signal.c b/darwin-user/signal.c index a0b9f89dcc..8dbfa931e1 100644 --- a/darwin-user/signal.c +++ b/darwin-user/signal.c @@ -198,11 +198,7 @@ static void host_signal_handler(int host_signum, siginfo_t *info, /* the CPU emulator uses some host signals to detect exceptions, we we forward to it some signals */ - if (host_signum == SIGSEGV || host_signum == SIGBUS -#if defined(TARGET_I386) && defined(USE_CODE_COPY) - || host_signum == SIGFPE -#endif - ) { + if (host_signum == SIGSEGV || host_signum == SIGBUS) { if (cpu_signal_handler(host_signum, (void*)info, puc)) return; } |