Difference between fork(), vfork(), exec() and clone() - BunksAllowed

BunksAllowed is an effort to facilitate Self Learning process through the provision of quality tutorials.

Random Posts

Difference between fork(), vfork(), exec() and clone()

Share This


fork() - creates a new child process, which is a complete copy of the parent process. Child and parent processes use different virtual address spaces, which is initially populated by the same memory pages.

Then, as both processes are executed, the virtual address spaces begin to differ more and more, because the operating system performs a lazy copying of memory pages that are being written by either of these two processes and assigns an independent copies of the modified pages of memory for each process. This technique is called Copy-On-Write (COW).


vfork() is an obsolete optimization for "fork-and-exec" model. Earlier, the fork() made a full copy of the parent's memory, so it was pretty expensive. Since in many cases a fork() was followed by exec(), which discards the current memory map and creates a new one, it was a needless expense. 

Nowadays, fork() doesn't copy the memory; it's simply set as "copy on write", so fork()+exec() is just as efficient as vfork()+exec().

It creates a new child process, which is a "quick" copy of the parent process. 

In contrast to the system call fork(), child and parent processes share the same virtual address space. 

Using the same virtual address space, both the parent and child use the same stack, the stack pointer and the instruction pointer, as in the case of the classic fork(). 

To prevent unwanted interference between parent and child, which use the same stack, execution of the parent process is frozen until the child will call either exec() (create a new virtual address space and a transition to a different stack) or _exit() (termination of the process execution). 

It can be performed 4-5 times faster than the fork(), because unlike the fork() (even with COW kept in the mind), implementation of vfork() system call does not include the creation of a new address space (the allocation and setting up of new page directories).


clone() is the syscall used by fork(). With some parameters, it creates a new process, with others, it creates a thread. The difference between them is just which data structures (memory space, processor state, stack, PID, open files, etc) are shared or not.

Various parameters of this system call, specify which parts of the parent process must be copied into the child process and which parts will be shared between them. As a result, this system call can be used to create all kinds of execution entities, starting from threads and finishing by completely independent processes

In fact, clone() system call is the base which is used for the implementation of pthread_create() and all the family of the fork() system calls.


exec() - resets all the memory of the process, loads and parses specified executable binary, sets up new stack and passes control to the entry point of the loaded executable

This system call never return control to the caller and serves for loading of a new program to the already existing process

This system call with fork() system call together form a classical UNIX process management model called "fork-and-exec".



Happy Exploring!

No comments:

Post a Comment