循环中fork创建进程的个数
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
linux下创建进程的系统调用是fork。其定义如下
#include <sys/types.h>
#include <unistd.h>
pid_t fork();
在循环中创建进程时,进程的个数是怎样的?
1、循环中没有任何父子进程的判断
#include <sys/types.h>
#include <stdlib.h>
#include <unistd.h>
#include <stdio.h>
int main()
{
pid_t pid;
int idx = -1;
for (int i = 0; i < 2; i++) {
pid = fork();
}
while (1);
exit(0) ;
}
输出为
可以看出总共有4个进程
其生成过程图如下所示
2、创建指定个数的子进程
在创建子进程后,根据fork的返回值判断是否是子进程,如果是子进程,(1)退出循环,进入子进程的事件处理;(2)不退出循环,直接是子进程的事件处理,其中 事件处理是一个循环,所在循环退出前,子进程是不会执行for语句的,这也是nginx创建工作进程的方式
代码如下
int main()
{
pid_t pid;
int idx = -1;
for (int i = 0; i < 2; i++) {
pid = fork();
if (pid < 0) {
exit(-1);
} else if (pid > 0) {
continue;
} else {
idx = i;
while (1) {
printf("idx=%d\n", idx);
}
}
}
while (1);
exit(0) ;
}
输出为
可以看到有3个进程,两个子进程,一个父进程
其生成过程图如下所示
GitHub 加速计划 / li / linux-dash
6
1
下载
A beautiful web dashboard for Linux
最近提交(Master分支:4 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献6条内容
所有评论(0)