diff options
Diffstat (limited to 'linux-user/main.c')
-rw-r--r-- | linux-user/main.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/linux-user/main.c b/linux-user/main.c index a73919ec3c..6b8337fc7c 100644 --- a/linux-user/main.c +++ b/linux-user/main.c @@ -598,8 +598,9 @@ void cpu_loop (CPUSPARCState *env) #else // XXX #endif - case 0x100: // XXX, why do we get these? - break; + case EXCP_INTERRUPT: + /* just indicate that signals should be handled asap */ + break; case EXCP_DEBUG: { int sig; |