about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--nitro.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/nitro.c b/nitro.c
index 74c769c..6139cb9 100644
--- a/nitro.c
+++ b/nitro.c
@@ -1211,8 +1211,12 @@ has_died(pid_t pid, int status)
 
 			services[i].setuppid = 0;
 
-			if (status == 0) {
+			if (WEXITSTATUS(status) == 0) {
 				process_step(i, EVNT_SETUP);
+			} else if (WEXITSTATUS(status) == 111) {
+				services[i].state = PROC_FATAL;
+				services[i].wstatus = -1;
+				notify(i);
 			} else {
 				services[i].state = PROC_DELAY;
 				services[i].timeout = 1000;