How does fork() and vfork() differ?

Questions by joel   answers by joel

Showing Answers 1 - 3 of 3 Answers

Gopi K

  • Jun 21st, 2007
 

vfork() differs from fork() only in that the child process can share code and data with the calling process (parent process). This speeds cloning activity significantly at a risk to the integrity of the parent process if vfork() is misused.
vfork() is a higher performance version of fork() that is provided on some systems where a performance advantage can be attained.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions