ప్రతి ప్రాసెస్కు ఐసొలేటెడ్ address space ఉంది కాబట్టి, అవి కేవలం variables పంచుకోలేవు — వాటికి inter-process communication (IPC) అవసరం. OS అనేక యంత్రాంగాలను అందిస్తుంది, వేగం, దిశ, మెషిన్ల మధ్య పనిచేస్తాయా లేదా అనేదానిలో తేడాతో.
ప్రధాన యంత్రాంగాలు
Pipe / FIFO → byte stream, one direction; anonymous pipe = parent↔child, named FIFO = any procs
e.g. ls | grep foo (the shell wires stdout→stdin via a pipe)
Shared memory → both map the SAME physical pages → FASTEST (no copy), but you must
synchronize access yourself (semaphore/mutex)
Message queue → kernel-managed queue of discrete messages; decoupled, preserves boundaries
Socket → bidirectional stream/datagram; UNIX-domain (same host) or TCP/UDP (across network)
Signal → tiny async notification (a number), e.g. SIGINT, SIGTERM — control, not data transfer
