Answer Posted / anchal
fork is a system call used for creating child processes of a
parent process.it returns the process id of the created
child process.after that pid(process id ) is checked if it
is negative,it means no child process is created,pid==0
implies the id of the newly created process and pid>0 is the
id of child process given to the parent process.the
statements following fork system call are executed by both
the parent and child process.and one more thing,the parent
and child process have the exact copy of address space but
it exist separately for the two processes.
| Is This Answer Correct ? | 45 Yes | 1 No |
Post New Answer View All Answers
Explain linking across directories?
What are the various schemes available?
Tell me set-user-id is related to (in unix)?
Explain what are the system calls used for process management?
How to get or set an environment variable from a program?
Please explain fork() system call?
What is ipc in unix?
Explain a zombie?
Explain the system calls used for process management?
Explain what is the process id for kernel process?
What is the full form of ipc?
Please describe the initial process sequence while the system boots up?
Which ipc is faster?
How to write the program on full-duplex communication on bidirectional(e.g using two pipes)?
What is daemon?