From 3a47e57f680f8290acf08be96d2ec414065dbb08 Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Tue, 15 Feb 2011 11:35:56 -0600 Subject: [PATCH] core: don't trap SIGINT Let debuggers handle it like they're supposed to. --- src/main.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main.c b/src/main.c index 39e03de21..3889606f5 100644 --- a/src/main.c +++ b/src/main.c @@ -173,7 +173,6 @@ nm_signal_handler (int signo) g_main_loop_quit (main_loop); break; - case SIGINT: case SIGTERM: /* let the fatal signals interrupt us */ --in_fatal; @@ -214,7 +213,6 @@ setup_signals (void) action.sa_mask = mask; action.sa_flags = 0; sigaction (SIGTERM, &action, NULL); - sigaction (SIGINT, &action, NULL); sigaction (SIGILL, &action, NULL); sigaction (SIGBUS, &action, NULL); sigaction (SIGFPE, &action, NULL);