diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2004-02-16 22:11:32 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2004-02-16 22:11:32 +0000 |
commit | 58fe2f10f0e9ddd63bc6004776ef6e874101e9c5 (patch) | |
tree | bf7a875031f2372018c12a62b11f7c23457aed49 /linux-user | |
parent | 3a1d9b8bbb693d18a346552a5e98c96ad5006ff9 (diff) | |
download | qemu-58fe2f10f0e9ddd63bc6004776ef6e874101e9c5.tar.gz qemu-58fe2f10f0e9ddd63bc6004776ef6e874101e9c5.tar.bz2 qemu-58fe2f10f0e9ddd63bc6004776ef6e874101e9c5.zip |
experimental code copy support
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@623 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'linux-user')
-rw-r--r-- | linux-user/signal.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/linux-user/signal.c b/linux-user/signal.c index bb006cc79e..666d6e14fb 100644 --- a/linux-user/signal.c +++ b/linux-user/signal.c @@ -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; } |