I am trying to understand the following piece of code
#include<stdio.h>
#include<unistd.h>
#include<sys/types.h>
int main()
{
pid_t pid ;
unsigned int i=0;
pid=vfork();
switch(pid)
{
case -1: // some sort of error
puts("fork error");
break;
case 0: // the child process
while(i<100)
{
printf("%d\n", i);
i++;
}
break;
default: //parent
while(i<1000)
{
printf("%d\n", i);
i++;
}
break;
}
// _exit(0);
}
And please don't tell me that vfork() is bad and these kind of things .I know it is , but what is happening exactly in this code that is causing this kind of error . Thanks in advance
It's unclear what you are trying to do or understand, but here is a slightly edited quote from the manual:
You are doing both 1:
i++
and 3printf("%d\n", i)
. Whatever you expect, it won't work.As a side note,
vfork
isn't bad. Just tricky, dangerous, almost useless and removed from SUSv4.