Message Passing
Message system – processes communicate with each other without resorting to shared variables
-Useful in distributed environment ex. Chat program that participants communicate with one another by exchanging messages
Message passing facility provides two operations:
-send(message) – message size fixed or variable
-receive(message)
If P and Q wish to communicate, they need to:
-establish a communication link between them
-exchange messages via send/receive