0
13kviews
What is meant by Interprocess communication? Explain shared memory and message passing.
1 Answer
| written 9.5 years ago by | modified 9.5 years ago by |
Inter-process communication (IPC) is the activity of sharing data across multiple and commonly specialized processes using communication protocols.
Typically, applications using IPC are categorized as clients and servers, where the client requests data and the server responds to client requests.
Many applications are both clients and servers, as commonly seen …