aboutsummaryrefslogtreecommitdiff
path: root/src/util/os_priority.c
diff options
context:
space:
mode:
authorSree Harsha Totakura <totakura@in.tum.de>2013-10-12 00:07:33 +0000
committerSree Harsha Totakura <totakura@in.tum.de>2013-10-12 00:07:33 +0000
commit27728a48d661e9ee546cc95aae8fa52050eefb29 (patch)
tree89450fc22b530dc592134ac18405180eeafe13b3 /src/util/os_priority.c
parent6d38e5b12b460d1d7f0a6eafe1410f7121e04002 (diff)
downloadgnunet-27728a48d661e9ee546cc95aae8fa52050eefb29.tar.gz
gnunet-27728a48d661e9ee546cc95aae8fa52050eefb29.zip
- change --enable-ll to --enable-supermuc
- define a system wide termination signal GNUNET_TERM_SIG. Set this to SIGUSR1 only when building for SuperMUC
Diffstat (limited to 'src/util/os_priority.c')
-rw-r--r--src/util/os_priority.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/util/os_priority.c b/src/util/os_priority.c
index d499ed985..1466ce059 100644
--- a/src/util/os_priority.c
+++ b/src/util/os_priority.c
@@ -229,6 +229,9 @@ GNUNET_OS_process_kill (struct GNUNET_OS_Process *proc, int sig)
229 case SIGINT: 229 case SIGINT:
230 case SIGKILL: 230 case SIGKILL:
231 case SIGTERM: 231 case SIGTERM:
232#if (SIGTERM != GNUNET_TERM_SIG)
233 case GNUNET_TERM_SIG:
234#endif
232#if defined(WINDOWS) && !defined(__CYGWIN__) 235#if defined(WINDOWS) && !defined(__CYGWIN__)
233 { 236 {
234 DWORD exitcode; 237 DWORD exitcode;