]> Git Repo - qemu.git/blobdiff - linux-user/signal.c
experimental code copy support
[qemu.git] / linux-user / signal.c
index bb006cc79ebeaecb6ff45b126584b0c9ea9b1d46..666d6e14fb5ec0fb2724277ab4a3a63be5a0b400 100644 (file)
@@ -378,7 +378,11 @@ 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 (host_signum == SIGSEGV || host_signum == SIGBUS 
+#if defined(TARGET_I386) && defined(USE_CODE_COPY)
+        || host_signum == SIGFPE
+#endif
+        ) {
         if (cpu_signal_handler(host_signum, info, puc))
             return;
     }
This page took 0.020019 seconds and 4 git commands to generate.