From 74c896ddeb3712a9df2cdbfe5c57364c9d0366af Mon Sep 17 00:00:00 2001 From: Alex Martin Date: Sun, 26 Mar 2017 15:01:38 +0200 Subject: [PATCH] catch interrupt signal instead of terminate --- src/crashhandler_unix.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crashhandler_unix.cpp b/src/crashhandler_unix.cpp index e5d1e42..f2b49ba 100644 --- a/src/crashhandler_unix.cpp +++ b/src/crashhandler_unix.cpp @@ -36,7 +36,7 @@ namespace {SIGFPE, "SIGFPE"}, {SIGILL, "SIGILL"}, {SIGSEGV, "SIGSEGV"}, - {SIGTERM, "SIGTERM"}, + {SIGINT, "SIGINT"}, }; std::map OldSignalActions;