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 […]

Create Process Using fork()

Reading Time: 2 minutes Points To Catch When we fork in any process it simply creates a copy of the same process which we call child process Fork returns 0 in the child process & PID of the child process in the parent process, which […]