X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Fmain.c;h=c5f9c34f4478f743a06f6cb983194b6be8dd7034;hb=3bd4593ef9a57f23062c61ec465389f749ba3089;hp=b0582c1b297a5e28bf298be6471869acbf95a9b8;hpb=721f67e477ee5050961020ed5afd8e0daf42bf2d;p=pspp-builds.git diff --git a/src/main.c b/src/main.c index b0582c1b..c5f9c34f 100644 --- a/src/main.c +++ b/src/main.c @@ -23,12 +23,14 @@ #include "main.h" #include "cmdline.h" #include "command.h" +#include "dictionary.h" #include "error.h" #include "getline.h" #include "glob.h" #include "lexer.h" #include "output.h" #include "settings.h" +#include "var.h" #include #include @@ -52,25 +54,28 @@ 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; -/* Initialise error handling on the gsl library */ -static void -err_handler_gsl (const char *reason, const char *file, - int line, int gsl_errno UNUSED) -{ - msg(FE, _("gsl error at %s:%d; reason: \"%s\""), file,line,reason); -} + + + + /* 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(err_handler_gsl); + gsl_set_error_handler_off(); /* Initialization. */ if (!outp_init ()) @@ -107,6 +112,7 @@ static int execute_command (void) { int result; + /* Read the command's first token. We may hit end of file. If so, give the line reader a chance to proceed to the next file. @@ -130,6 +136,9 @@ execute_command (void) /* Unset the /ALGORITHM subcommand if it was used */ unset_cmd_algorithm (); + /* Clear any auxiliary data from the dictionary. */ + dict_clear_aux (default_dict); + return result; } @@ -186,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); }