A Bit About vfork

Reading Time: < 1 minutes What is vfork ? It’s a special case of a clone. It is used to create new processes without copying the page tables of the parent process. calling thread is suspended until the child call execve or _exit. Points To […]

Clone system call example

Reading Time: 2 minutes This is a quick article on Clone system call example without talking shit. So let’s see some pointers for the same : clone() creates a new process, in a manner similar to fork(). It is actually a library function layered on […]