Entries categorized as Difference between the fork() and vfork() system call
Difference between the fork() and vfork() system call
Explain difference between the fork() and vfork() system call. During the fork() system call the Kernel makes a copy of the parent process’s address space and attaches it to the child process. But the vfork() system call do not makes any copy of the parent’s address space, so it is faster than the fork() system Read More...