AI
推荐
模板社区
专题
登录
免费注册
首页
流程图
详情
Fork()函数说明
2018-04-12 17:17:24
3
举报
分享方式
免费使用
对于这段程序的说明 pid1 = fork(); printf(1); pid2 = fork(); printf(2); if (pid1 == 0) { pid3 = fork(); printf(3); } else { printf(4); }
操作系统
模板推荐
作者其他创作
大纲/内容
printf(\"**4**\\");
pid1 == 0
int pid2=fork();
pid2 is 0
printf(\"**3**\\");
pid2 is the pid
int pid3 = fork();
int pid1 = fork();
printf(\"**1**\\");
pid1 is 0
pid1 != 0
printf(\"**2**\\");
pid1 is the process's pid
收藏
立即使用
数据库系统模板(B 树等)
收藏
立即使用
Fork()函数说明
巩泽群
职业:本科
去主页
Collect
Get Started
模版参数说明
Collect
Get Started
fork函数
Collect
Get Started
C语言输入输出函数
Collect
Get Started
fork1
评论
0
条评论
下一页
Document