Added a trap on signal 11 requesting a bug report.
authorJohn Darrington <john@darrington.wattle.id.au>
Sat, 21 Feb 2004 09:41:53 +0000 (09:41 +0000)
committerJohn Darrington <john@darrington.wattle.id.au>
Sat, 21 Feb 2004 09:41:53 +0000 (09:41 +0000)
src/ChangeLog
src/main.c

index 704fce07e70205afa0e84e142aad7ba7d6951e75..8b4b8d04e43e31b4100800cea2dca609bb82fd9a 100644 (file)
@@ -1,3 +1,7 @@
+Sat Feb 21 17:38:58 WST 2004 John Darrington <john@darrington.wattle.id.au>
+
+        * main.c: Added a signal handler for SIGSEGV requesting a bug report.
+        
 Fri Feb 20 23:22:14 2004  Ben Pfaff  <blp@gnu.org>
 
        * dictionary.c: (dict_create_var) Fix root cause of bug worked
index 04e886787bb73b413e9a055e95f4c626a4b8424c..c747287c715fededddc1250a247d02e3acf1e01c 100644 (file)
@@ -28,6 +28,8 @@
 #include "glob.h"
 #include "lexer.h"
 #include "output.h"
+#include "version.h"
+#include <signal.h>
 
 #include <stdlib.h>
 
@@ -46,6 +48,10 @@ int finished;
 /* The current date in the form DD MMM YYYY. */
 char curdate[12];
 
+
+/* If a segfault happens, issue a message to that effect and halt */
+void bug_handler(int sig);
+
 /* Whether we're dropping down to interactive mode immediately because
    we hit end-of-file unexpectedly (or whatever). */
 int start_interactive;
@@ -54,6 +60,11 @@ int start_interactive;
 int
 main (int argc, char **argv)
 {
+  struct sigaction bug ;
+  bug.sa_handler = bug_handler;
+
+  sigaction(SIGSEGV, &bug,0);
+
   /* Initialization. */
   if (!outp_init ())
     err_hcf (0);
@@ -153,3 +164,43 @@ handle_error (int code)
   else
     lex_discard_line ();
 }
+
+
+
+/* If a segfault happens, issue a message to that effect and halt */
+void 
+bug_handler(int sig UNUSED)
+{
+  fprintf(stderr,
+         "******************************************************************\n"
+         "You have discovered a bug in PSPP.\n\n"
+         "  Please report this, by sending "
+         "an email to " PACKAGE_BUGREPORT ",\n"
+         "explaining what you were doing when this happened, and including\n"
+         "a sample of your input file which caused it.\n");
+
+  fprintf(stderr,
+         "Also, please copy the following lines into your bug report:\n\n"
+         "bare_version:        %s\n" 
+         "version:             %s\n"
+         "stat_version:        %s\n"
+         "host_system:         %s\n"
+         "build_system:        %s\n"
+         "default_config_path: %s\n"
+         "include_path:        %s\n"
+         "groff_font_path:     %s\n"
+         "locale_dir:          %s\n"
+         "******************************************************************\n",
+         bare_version,         
+         version,
+         stat_version,
+         host_system,        
+         build_system,
+         default_config_path,
+         include_path, 
+         groff_font_path,
+         locale_dir);     
+
+  exit(-1);
+}
+