How can a parent and child process communicate?
Answer Posted / basha
this is called copy on write concept
===================================
when ever an environment variable is modified for the
first time either by the parent process or by the child
process a copy of the variable is given to the child
process. the process which modifies the value will see the
modified value. the other process will see the value
obefore modification.
export statement makes a variable as environment
variable ,visible to child
| Is This Answer Correct ? | 1 Yes | 10 No |
Post New Answer View All Answers
Explain about daemon?
Explain the initial process sequence while the system boots up?
What is fork()?
Explain the advantage of executing a process in background?
What is the condition required for dead lock in unix system?
Max relax-able permission value with out giving write permission to others?
How to write the program on full-duplex communication on bidirectional(e.g using two pipes)?
What are two different models of ipc differentiate both?
Explain a zombie?
Please explain fork() system call?
Explain what is the process id for kernel process?
What are the various schemes available in ipc?
Explain the system calls used for process management?
Which ipc is the fastest in unix?
How to write the program on full-duplex communication on bidirectional?