From 793fee679eef2f9d6f1dc98103950dd386ab576e Mon Sep 17 00:00:00 2001 From: James Turner Date: Fri, 26 Nov 2010 02:10:41 +0000 Subject: [PATCH] Fix for bug 62, clean exit of terrasync on SIGTERM --- utils/TerraSync/terrasync.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/TerraSync/terrasync.cxx b/utils/TerraSync/terrasync.cxx index 0628e2aef..d48e43f77 100644 --- a/utils/TerraSync/terrasync.cxx +++ b/utils/TerraSync/terrasync.cxx @@ -279,7 +279,7 @@ int termination_triggering_signals[] = { #if defined(_MSC_VER) || defined(__MINGW32__) SIGINT, SIGILL, SIGFPE, SIGSEGV, SIGTERM, SIGBREAK, SIGABRT, #else - SIGHUP, SIGINT, SIGQUIT, SIGKILL, + SIGHUP, SIGINT, SIGQUIT, SIGKILL, SIGTERM, #endif 0}; // zero terminated -- 2.39.5