Add yet another expression test and fix the bugs it found.
[pspp-builds.git] / src / main.c
index b4aa243518f7851e3adbf496ebe51059ef730a74..c5f9c34f4478f743a06f6cb983194b6be8dd7034 100644 (file)
@@ -54,16 +54,26 @@ char curdate[12];
 /* If a segfault happens, issue a message to that effect and halt */
 void bug_handler(int sig);
 
+/* Handle quit/term/int signals */
+void interrupt_handler(int sig);
+
 /* Whether we're dropping down to interactive mode immediately because
    we hit end-of-file unexpectedly (or whatever). */
 int start_interactive;
 
 
+
+
+
+
 /* Program entry point. */
 int
 main (int argc, char **argv)
 {
+
   signal (SIGSEGV, bug_handler);
+  signal (SIGFPE,  bug_handler);
+  signal (SIGINT,  interrupt_handler);
 
   gsl_set_error_handler_off();
 
@@ -185,5 +195,23 @@ handle_error (int code)
 void 
 bug_handler(int sig UNUSED)
 {
-  request_bug_report_and_abort("Segmentation Violation");
+  switch (sig) 
+    {
+    case SIGFPE:
+      request_bug_report_and_abort("Floating Point Exception");
+      break;
+    case SIGSEGV:
+      request_bug_report_and_abort("Segmentation Violation");
+      break;
+    default:
+      request_bug_report_and_abort("");
+      break;
+    }
+}
+
+
+void 
+interrupt_handler(int sig UNUSED)
+{
+  err_hcf(0);
 }