如果我运行此程序,我是否会解散进程?我正在尝试创建一个主程序,该程序在并行运行5个进程,然后没有得到失效的进程。问题主要在于确保不会发生这种情况。我不太确定我这样做是否正确。我听说通过制作您的流程" wait()"确保您没有失效的流程是一种很好的做法。对于已经" fork()" ed的孩子来说。
#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;
}
答案 0 :(得分:3)
是的,您需要对子进程wait
。原因是否则仍然存在与现在的僵尸进程相关联的数据,例如进程返回值的空间。
答案 1 :(得分:0)
看一下使用daemon()命令将应用程序放在后台,然后使用pthreads来管理并行性。
命名强> 守护进程 - 在后台运行
<强>概要强> #include
int daemon(int nochdir, int noclose);
glibc的功能测试宏要求(参见 feature_test_macros(7)):
daemon(): _BSD_SOURCE || (_XOPEN_SOURCE && _XOPEN_SOURCE < 500)
<强>描述强> 守护进程()函数用于希望从控制终端分离并在后台运行的程序 系统守护进程。
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
到这些文件描述符。