What is Shared Memory ?

Shared Memory Shared memory allows multiple processes share a region of memory.It gets mapped to processes’ address space.   Advantages of Shared memory Fastest IPC mechanisms Does not require to copying data between the interested processes. Processes directly access the memory Disadvantages of Shared memory Programmer has to …