This commit was generated by cvs2svn to track changes on a CVS vendor
[deliverable/binutils-gdb.git] / sim / common / sim-signal.c
index e546ae7026bbfddb445d74a8b402cba662b4e731..77709b17e7a2721ad448fb238a0fd48f4f420f08 100644 (file)
@@ -34,6 +34,9 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 #ifndef SIGBUS
 #define SIGBUS 10
 #endif
+#ifndef SIGQUIT
+#define SIGQUIT 3
+#endif
 #endif
 
 int
@@ -78,6 +81,10 @@ sim_signal_to_host (SIM_DESC sd, SIM_SIGNAL sig)
       return SIGFPE;
 #endif
       break;
+
+    case SIM_SIGNONE:
+      return 0;
+      break;
     }
 
   sim_io_eprintf (sd, "sim_signal_to_host: unknown signal: %d\n", sig);
This page took 0.02299 seconds and 4 git commands to generate.