Common IPC Facilities
Signals: serve primarily to notify a process of asynchronous events.
- # kill -HUP 3214
- generally about 31 signals available
Pipes: unidirectional, first-in first-out, unstructured data stream of fixed max size.
- Only used between related processes.