我正在使用Apache commons-daemon 的 jsvc在 Linux 上将 Java 程序作为守护程序运行。
守护程序“随机”崩溃,仅显示消息:
jsvc.exec error: Service did not exit cleanly
这是jsvc
(第 1142 行)中jsvc-unix.c
代码的相关部分:
while (waitpid(pid, &status, 0) != pid) {
/* Waith for process */
}
/* The child must have exited cleanly */
if (WIFEXITED(status)) {
status = WEXITSTATUS(status);
// Clean exit code...
}
else {
if (WIFSIGNALED(status)) {
log_error("Service killed by signal %d", WTERMSIG(status));
/* prevent looping */
if (laststart + 60 > time(NULL)) {
log_debug("Waiting 60 s to prevent looping");
sleep(60);
}
continue;
}
log_error("Service did not exit cleanly", status);
return 1;
}
在哪种情况下WIFEXITED
,WIFSIGNALED
两者都可以是假的?是否保证在这种情况下进程没有被杀死(被进程或 Linux OOM 杀手)?