Concept Flow - Copy-on-write technique
Process A and B share same memory page
Process B tries to write to shared page
OS detects write attempt
OS creates a copy of the page for Process B
Process B writes to its own copy
Process A continues using original page
Both processes have separate pages after write
Two processes share the same memory page until one tries to write, then the OS copies the page so each has its own.