summaryrefslogtreecommitdiff
path: root/src/util/helper.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/helper.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/helper.c')
-rw-r--r--src/util/helper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/helper.c b/src/util/helper.c
index 21f196ebc..404dad4fa 100644
--- a/src/util/helper.c
+++ b/src/util/helper.c
@@ -208,7 +208,7 @@ GNUNET_HELPER_kill (struct GNUNET_HELPER_Handle *h,
208 h->fh_to_helper = NULL; 208 h->fh_to_helper = NULL;
209 return ret; 209 return ret;
210 } 210 }
211 if (0 != GNUNET_OS_process_kill (h->helper_proc, SIGTERM)) 211 if (0 != GNUNET_OS_process_kill (h->helper_proc, GNUNET_TERM_SIG))
212 return GNUNET_SYSERR; 212 return GNUNET_SYSERR;
213 return GNUNET_OK; 213 return GNUNET_OK;
214} 214}