[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: vfork()
Hi,
Rupa wrote:
> when a call to vfork() is made, the child process created will be
> sharing the address space of the parent. I want to know whether the pid
> returned by the vfork() is same as the pid of parent. Because in case of
No, it isn't:
Please check SuS v2:
"Upon successful completion, vfork() returns 0 to the child process and
returns the process ID of the child process to the parent process.
Otherwise, -1 is returned to the parent, no child process is created,
and errno is set to indicate the error."
Kind Regards,
Felipe
--
Kernelnewbies: Help each other learn about the Linux kernel.
Archive: http://mail.nl.linux.org/kernelnewbies/
FAQ: http://kernelnewbies.org/faq/
- References:
- vfork()
- From: "Rupa" <rupa.ramakrishna@ionidea.com>