More IPC Facilities
Named pipes: similar to regular pipes, except that they are persistent (maintain an entry in file system namespace)
- Commonly referred to as FIFO.
- Can be used by unrelated processes.
Sockets: communication endpoint that represents an abstract object on which a process can send/receive messages.
- Commonly used in network communications.