Sharing








Pieces of different processes mapped to one single piece of physical memory. Allows sharing of code (saves memory), e.g. libraries. Copy on write: piece may be used by several processes until one writes to it (then that process gets its own copy). Simplifies interprocess-communication (IPC).

Home