已失效的进程,fork()
Posted
技术标签:
【中文标题】已失效的进程,fork()【英文标题】:Defunct processes, fork() 【发布时间】:2013-03-23 13:48:09 【问题描述】:如果我运行这个程序,我的进程会失效吗?我正在尝试创建一个主程序,该程序并行运行 5 个进程,然后不获取已失效的进程。麻烦主要是要确保这不会发生。我不太确定我到目前为止是否做得对。我听说这是一个很好的做法,通过让你的进程“wait()”来确保你的进程没有失效的进程,以确保尽可能多的孩子已经被“fork()”了。
#include <time.h>
#include <stdio.h>
#include <unistd.h>
#include <sys/types.h>
#include <stdlib.h>
void forkChildren(int nrofChildren, int *nr_of_children)
pid_t pid;
int i;
for(i=0; i<5; i++)
/* fork a child process */
pid = fork();
(*nr_of_children)++;
/* error occurred */
if (pid < 0)
fprintf(stderr, "Fork failed\n");
exit(-1);
/* successful child */
else if (pid == 0)
int sleeptime=1; //rand()%10;
printf("I am child: %d \nwith parent: %d \nin loop: %d \nand will sleep for: %d sec\n\n", getpid(), getppid(), i, sleeptime);
sleep(sleeptime);
printf("Ending of child: %d \nwith parent :%d in loop: %d\n\n", getpid(), getppid(), i);
/* parent process
else
wait(NULL); Do I need this to make sure I dont get defunct processes???
*/
int main(int argc, char *argv[])
srand((unsigned int)time(NULL));
int nr_of_children=0;
if (argc < 2)
/* if no argument run 5 childprocesses */
forkChildren(5, &nr_of_children);
else
forkChildren(atoi (argv[1]), &nr_of_children);
wait(NULL);
printf("End of %d, with %d nr of child-processes\n\n", getpid(), nr_of_children);
return 0;
【问题讨论】:
all 进程在终止后失效。如果您为他们wait
,他们将在很短的时间内成为僵尸。如果您从 main 退出或返回,它们将在很短的时间内成为僵尸,因为它们将被等待它们的 init 采用。
为什么不使用返回值将产生子节点的数量传回给调用者,而不是使用带有指向结果的愚蠢*nr_of_children
指针的 void() 函数?
@wildplasser 啊哈这是个主意,我没想过,谢谢 :-)
【参考方案1】:
是的,您需要在子进程上wait
。原因是否则仍然会有与现在僵尸进程关联的数据,例如进程返回值的空间。
【讨论】:
所以你的意思是我必须在 else 语句中使用 wait(NULL) 来确保它? @patriques 是的,否则系统中会出现“僵尸”进程。【参考方案2】:看看使用 daemon() 命令将您的应用置于后台,然后使用 pthreads 来管理并行度。
姓名 守护进程 - 在后台运行
概要 #包括
int daemon(int nochdir, int noclose);
glibc 的功能测试宏要求(请参阅 feature_test_macros(7)):
daemon(): _BSD_SOURCE || (_XOPEN_SOURCE && _XOPEN_SOURCE < 500)
描述 daemon() 函数适用于希望将自身与控制终端分离并在后台运行的程序 系统守护进程。
If nochdir is zero, daemon() changes the process’s current working directory to the root directory ("/"); otherwise, If noclose is zero, daemon() redirects standard input, standard output and standard error to /dev/null; otherwise, no changes are made
到这些文件描述符。
【讨论】:
以上是关于已失效的进程,fork()的主要内容,如果未能解决你的问题,请参考以下文章