Inter-process Communication Concepts
Addressing
Direct Addressing
send(P, message)
receive(Q, message)send(P, message) // Send a message to process P
receive(id, message) // Receive a message from any process; the id is set to the name of the senderIndirect Addressing
Synchronization
Buffering
Last updated