summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2009-10-25 20:25:06 +0100
committerMichael Adam <obnox@samba.org>2009-10-25 23:33:37 +0100
commit3474de599fa9beff3931e7f655156acefff3f655 (patch)
tree9797a1e524ad9ed5c7c6e0914f2ac766d023f5fb
parent1b4d130cf5291a174f0e2af26573b890e535f5f7 (diff)
downloadtinyproxy-3474de599fa9beff3931e7f655156acefff3f655.tar.gz
tinyproxy-3474de599fa9beff3931e7f655156acefff3f655.zip
Change child_kill_children() to take the signal as an argument.
-rw-r--r--src/child.c4
-rw-r--r--src/child.h2
-rw-r--r--src/main.c2
3 files changed, 4 insertions, 4 deletions
diff --git a/src/child.c b/src/child.c
index 0a79d7e..b638b99 100644
--- a/src/child.c
+++ b/src/child.c
@@ -440,13 +440,13 @@ void child_main_loop (void)
/*
* Go through all the non-empty children and cancel them.
*/
-void child_kill_children (void)
+void child_kill_children (int sig)
{
unsigned int i;
for (i = 0; i != child_config.maxclients; i++) {
if (child_ptr[i].status != T_EMPTY)
- kill (child_ptr[i].tid, SIGTERM);
+ kill (child_ptr[i].tid, sig);
}
}
diff --git a/src/child.h b/src/child.h
index 1197eb2..7fec1dc 100644
--- a/src/child.h
+++ b/src/child.h
@@ -33,7 +33,7 @@ extern short int child_pool_create (void);
extern int child_listening_sock (uint16_t port);
extern void child_close_sock (void);
extern void child_main_loop (void);
-extern void child_kill_children (void);
+extern void child_kill_children (int sig);
extern short int child_configure (child_config_t type, unsigned int val);
diff --git a/src/main.c b/src/main.c
index c790498..e22b9e7 100644
--- a/src/main.c
+++ b/src/main.c
@@ -473,7 +473,7 @@ main (int argc, char **argv)
log_message (LOG_INFO, "Shutting down.");
- child_kill_children ();
+ child_kill_children (SIGTERM);
child_close_sock ();
/* Remove the PID file */