diff options
| author | Richard Henderson | 2011-10-25 19:34:06 +0200 |
|---|---|---|
| committer | Riku Voipio | 2011-10-27 13:43:10 +0200 |
| commit | 75f22e4e69aa4e6d58f52c1863910b3245acc719 (patch) | |
| tree | 165c09332ef8d2c389de9bf9bbf0d85a3941728f | |
| parent | linux-user: implement reboot syscall (diff) | |
| download | qemu-75f22e4e69aa4e6d58f52c1863910b3245acc719.tar.gz qemu-75f22e4e69aa4e6d58f52c1863910b3245acc719.tar.xz qemu-75f22e4e69aa4e6d58f52c1863910b3245acc719.zip | |
sparc-linux-user: Handle SIGILL.
Signed-off-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
| -rw-r--r-- | linux-user/main.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/linux-user/main.c b/linux-user/main.c index e7dad547b8..2bc10ed860 100644 --- a/linux-user/main.c +++ b/linux-user/main.c @@ -1191,6 +1191,15 @@ void cpu_loop (CPUSPARCState *env) case EXCP_INTERRUPT: /* just indicate that signals should be handled asap */ break; + case TT_ILL_INSN: + { + info.si_signo = TARGET_SIGILL; + info.si_errno = 0; + info.si_code = TARGET_ILL_ILLOPC; + info._sifields._sigfault._addr = env->pc; + queue_signal(env, info.si_signo, &info); + } + break; case EXCP_DEBUG: { int sig; |
