vfork in A Sentence

    1

    On the other hand, the Vfork does not use copy-on-write.

    0
    2

    The Vfork() system call is also used to create a new process.

    0
    3

    As using Vfork() does not create separate address spaces for child and parent processes.

    0
    4

    The other way, Vfork() suspends the execution of parent process until child process completes its execution.

    0
    5

    Similar to the fork(), here also the new process created is the child process, of the process that invoked Vfork().

    0