Just a quick question, if I clone a process, the PID of the cloned process is the same, yes ? fork() creates a child process where the PID differs, but everything else is th
Since PID is an unique identifier for a process, there's no way to have two distinct process with the same PID.