aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2010-06-28 11:20:47 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2010-06-28 11:20:47 +0000
commit62f22f399bd326fc6521204aff3b02bb32e8a401 (patch)
tree6f37925ba04dd8632496e9cb377e701281ffa94c
parent52c4711deb6393d51f984c575f1fa065a56c98f8 (diff)
downloadgnunet-62f22f399bd326fc6521204aff3b02bb32e8a401.tar.gz
gnunet-62f22f399bd326fc6521204aff3b02bb32e8a401.zip
-rw-r--r--contrib/timeout_watchdog.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/timeout_watchdog.c b/contrib/timeout_watchdog.c
index c8c339167..82bf11b0f 100644
--- a/contrib/timeout_watchdog.c
+++ b/contrib/timeout_watchdog.c
@@ -33,7 +33,7 @@
33static int child_died; 33static int child_died;
34static pid_t child; 34static pid_t child;
35 35
36void sigchld_handler(int val) 36static void sigchld_handler(int val)
37{ 37{
38 int status = 0; 38 int status = 0;
39 int ret = 0; 39 int ret = 0;
@@ -52,7 +52,7 @@ void sigchld_handler(int val)
52 exit(ret); 52 exit(ret);
53} 53}
54 54
55void sigint_handler(int val) 55static void sigint_handler(int val)
56{ 56{
57 kill(0, val); 57 kill(0, val);
58 exit(1); 58 exit(1);