diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-01-21 20:26:15 +0100 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-01-21 20:26:15 +0100 |
commit | 9393ff39a8be91ad90d1392cc4e093aa859c5005 (patch) | |
tree | 29aadadc644eadfb24edb02964d834f48680b390 /main.c | |
parent | a12081aa986c4cc878bf0480a5d0ffb986aed0c5 (diff) |
always use SIGKILL for netifd_kill_process, it is usually a last resort
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -219,7 +219,7 @@ netifd_kill_process(struct netifd_process *proc) if (!proc->uloop.pending) return; - kill(proc->uloop.pid, SIGTERM); + kill(proc->uloop.pid, SIGKILL); netifd_delete_process(proc); } |