diff options
author | turret <turret@duck.com> | 2024-01-11 19:16:21 +0000 |
---|---|---|
committer | turret <turret@duck.com> | 2024-01-11 19:16:21 +0000 |
commit | 1b61d9ddc1afdddd429e10eeda90a31ae7e69261 (patch) | |
tree | 254b91fada111dd8920e2f3e49b23a4e442e8df3 /init/log.c | |
parent | 9b126ca498e5c26a51997c9a87b5b01b152244fa (diff) | |
download | discord-bot-skeleton-1b61d9ddc1afdddd429e10eeda90a31ae7e69261.tar.gz discord-bot-skeleton-1b61d9ddc1afdddd429e10eeda90a31ae7e69261.tar.bz2 discord-bot-skeleton-1b61d9ddc1afdddd429e10eeda90a31ae7e69261.zip |
init: panic on child exit status !=0
also: modify log to exit status 0 on panic instead of 1 (only runs exit
on panicmode respawn which shouldn't cause a fatal termination)
Diffstat (limited to 'init/log.c')
-rw-r--r-- | init/log.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -185,7 +185,7 @@ void _panic(const char *fileorigin, if(pid != mainpid && mode == PANICMODE_RESPAWN) { /* we want to let the main process handle the rest */ subsystem_change_mode(pid, mode); - syscall(SYS_exit_group, 1); + syscall(SYS_exit_group, 0); } } |