这是我的代码 - >>
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>
int main()
{
int i ;
int x = 10 ;
int pid1, pid2, status ;
printf("Before forking, the value of x is %d\n", x);
/*
After forking, we make the parent and its two children
increment x in different ways to illustrate that they
have different copies of x
*/
if ((pid1 = fork()) == 0) {
/* First child process */
for (i=0 ; i < 5; i++) {
printf("\t\t\t At first child: x= %d\n", x);
x= x+10;
sleep(2) ; /* Sleep for 1 second */
}
}
else {
/* Parent process */
/* Create another child process */
if ((pid2 = fork()) == 0) {
/* Second child process */
for (i=0 ; i < 5; i++) {
printf("\t\t\t\t\t\t At second child: x= %d\n", x);
x= x+20;
sleep(2) ; /* Sleep for 1 second */
}
}
else {
/* Parent process */
for (i=0 ; i < 5; i++) {
printf("At parent: x= %d\n", x);
x= x+5;
sleep(1) ; /* Sleep for 1 second */
}
/*
The waitpid() system call causes the parent
to wait for a child process with a specific pid to complete
its execution. The input parameter can
specify the PID of the child process for
which it has to wait.
*/
waitpid(pid1, &status, 0);
waitpid(pid2, &status, 0);
}
}
}
这个输出就像---&gt;
在分叉之前,x的值是10
第二个孩子:x = 10
第二个孩子:x = 30
第二个孩子:x = 50
第二个孩子:x = 70
第二个孩子:x = 90
在分叉之前,x的值是10
第一个孩子:x = 10
第一个孩子:x = 20
第一个孩子:x = 30
第一个孩子:x = 40
第一个孩子:x = 50
在分叉之前,x的值是10
在父母:x = 10
在父母:x = 15
在父母:x = 20
在父母:x = 25
在父母:x = 30
为什么是printf语句,&#34;在分叉之前,x的值是10&#34;当它超过所有fork()系统调用时,打印三次。 ??请帮忙。
答案 0 :(得分:1)
您应该在每个fflush(stdout)
之前致电fork()
。