Send one on all process failure codes
This commit is contained in:
parent
cc791f0b67
commit
c9f550207f
@ -598,5 +598,5 @@ out:
|
||||
send_proc(&ckp->main, "shutdown");
|
||||
sleep(1);
|
||||
}
|
||||
exit(ret);
|
||||
exit(ret? 1: 0);
|
||||
}
|
||||
|
||||
@ -1237,5 +1237,5 @@ int generator(proc_instance_t *pi)
|
||||
send_proc(&ckp->main, "shutdown");
|
||||
sleep(1);
|
||||
}
|
||||
exit(ret);
|
||||
exit(ret? 1: 0);
|
||||
}
|
||||
|
||||
@ -1951,5 +1951,5 @@ int stratifier(proc_instance_t *pi)
|
||||
sleep(1);
|
||||
}
|
||||
|
||||
exit(ret);
|
||||
exit(ret? 1: 0);
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user