Term
Cooperating processes require what mechanism to allow an exchange of data and information? |
|
Definition
interprocess communication |
|
|
Term
What are the two fundamental models of InterProcesses communication? |
|
Definition
Shared memory
Message passing |
|
|
Term
Which of the following is NOT a logical method for implementing send()/ receive() operations? |
|
Definition
Automatic or explicit buffering
Synchronous or asynchronous communication
Direct or indirect communication |
|
|
Term
What is direct communication? |
|
Definition
each process must explicitly name the process it wants to communicate with. |
|
|
Term
When using direct communication, the communication link has all of the following properties. |
|
Definition
A link is established automatically between every pair of processes that want to communicate. The processes need to know only each other’s identity to communicate
A link is associated exactly two processes
Between each pair of processes, there exists exactly one link |
|
|