0
votes
Create a new independent process from another C process
Are you sure you are checking correctly the return value of fork()?
Like:
pid_t pid;
if (pid == 0) {
/* child */
}
else if (pid > 0) {
/* parent …
