COW(copy-on-write)

Creator
Created
Created
2019 Nov 5 5:17
Editor
Edited
Edited
2023 Jan 18 22:53
Refs
Refs
like fork(do not need to copy code and data) we do resource sharing efficiently
image copy on write time, parent and child processes to initially share the same
If either process modifies a shared page, only then is the page copied.
notion image

Recommendations