aboutsummaryrefslogtreecommitdiffstats
path: root/init/log.c
diff options
context:
space:
mode:
Diffstat (limited to 'init/log.c')
-rw-r--r--init/log.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/init/log.c b/init/log.c
index a3d0a7a..5c1b883 100644
--- a/init/log.c
+++ b/init/log.c
@@ -168,8 +168,9 @@ void _panic(const char *fileorigin,
}
/* if we are going to die, we dont really need to clean up */
- if(mode == PANICMODE_DIE)
- kill(-getpgid(pid), SIGINT);
+ if(mode == PANICMODE_DIE) {
+ kill(-getpgid(pid), SIGKILL);
+ }
print(NOLOCK("5") "------------[ cut here ]------------");