# Copy on write (COW)
Last edited: 2026-02-05
Copy on write (COW)
If two processes are using the same memory the operating system can let them share access to the same frame . Only needing to copy the data across if a write on the data is initiated by either process. This delays operations from the operating system until they are absolutely necessary.
