Difference between pthread and fork on gnu/Linux
In C there are some differences however: fork() Purpose is to create a new process, which becomes the child process of the caller Both processes will execute the next instruction following the fork() system call Two identical copies of the computer’s address space,code, and stack are created one for parent and child. Thinking of the … Read more