InterProcess Communication
Interprocess communication (IPC) is the transfer of data among processes.
five types of interprocess communication:
1)Shared memory permits processes to communicate by simply reading and
writing to a specified memory location.
2)Mapped memory is similar to shared memory, except that it is associated with a
file in the filesystem.
3)Pipes permit sequential...