我有这个代码在C中制作一个守护进程:
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <string.h>
void main() {
FILE *fp= NULL;
pid_t process_id = 0;
pid_t sid = 0;
// Create child process
process_id = fork();
// Indication of fork() failure
if (process_id < 0)
{
printf("fork failed!\n");
// Return failure in exit status
exit(1);
}
// PARENT PROCESS. Need to kill it.
if (process_id > 0)
{
printf("process_id of child process %d \n", process_id);
// return success in exit status
exit(0);
}
//unmask the file mode
umask(0);
//set new session
sid = setsid();
if(sid < 0)
{
// Return failure
exit(1);
}
// Change the current working directory to root.
chdir("/");
// Close stdin. stdout and stderr
close(STDIN_FILENO);
close(STDOUT_FILENO);
close(STDERR_FILENO);
while (1)
{
// Do your thing
usleep(2000);
}
}
我可以编译并以./exampleOne
运行它,这将在后台永远作为守护进程运行。
现在反过来,如果我有以下例子怎么办?
#include <stdio.h>
#include <stdlib.h
void main() {
while (1)
{
// do your thing
usleep(2000);
}
}
然后将其作为./exampleTwo &
运行。现在,它也将作为无限循环在后台运行。
那么区别是什么?第二个是如此简单。
答案 0 :(得分:2)
fork / daemon方法的一个简单优点是程序员决定fork将在何处发生,这允许程序员提供保证,当一个人没有错误地返回shell时,守护程序就会启动并运行。 / p>
在后台运行会立即返回shell,因此守护程序可能仍处于初始化阶段,与它的连接可能会暂时失败。