]> git.proxmox.com Git - qemu.git/commitdiff
sparc sigsegv support
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>
Tue, 15 Feb 2005 22:54:53 +0000 (22:54 +0000)
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>
Tue, 15 Feb 2005 22:54:53 +0000 (22:54 +0000)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1293 c046a42c-6fe2-441c-8c8c-71466251a162

linux-user/main.c

index f406f615d7e29b4ab8610c099d9ad5754821f475..b3f88dd16a986c8ea9582185d06bdec08af16e97 100644 (file)
@@ -476,6 +476,7 @@ static void flush_windows(CPUSPARCState *env)
 void cpu_loop (CPUSPARCState *env)
 {
     int trapnr, ret;
+    target_siginfo_t info;
     
     while (1) {
         trapnr = cpu_sparc_exec (env);
@@ -510,6 +511,17 @@ void cpu_loop (CPUSPARCState *env)
         case TT_WIN_UNF: /* window underflow */
             restore_window(env);
             break;
+        case TT_TFAULT:
+        case TT_DFAULT:
+            {
+                info.si_signo = SIGSEGV;
+                info.si_errno = 0;
+                /* XXX: check env->error_code */
+                info.si_code = TARGET_SEGV_MAPERR;
+                info._sifields._sigfault._addr = env->mmuregs[4];
+                queue_signal(info.si_signo, &info);
+            }
+            break;
        case 0x100: // XXX, why do we get these?
            break;
         default: