I need to be able to use fork() for a small project. The thing is that the example code is not working:
#include <sys/types.h>
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
int main()
{
pid_t pID = fork();
if (pID == 0) // child
{
printf("CHILD\n");
// Code only executed by child process
}
else if (pID < 0) // failed to fork
{
printf("FAIL\n");
}
else // parent
{
printf("PARENT\n"); // Code only executed by parent process
}
// Code executed by both parent and child.
system("PAUSE");
return 0;
}
The compiler says: "20 D:\Untitled1.cpp `fork' undeclared (first use this function)"
But I have read in the internet that it should be located in #include <unistd.h>
.
Any ideas? Thanks!