Expand description
fork() syscall implementation with copy-on-write (COW).
Structs§
- Fork
Result - Result returned by
sys_fork.
Functions§
- handle_
cow_ fault - Called from the page fault handler when a write fault occurs on a present page. Returns Ok(()) if the fault was successfully handled (COW resolution), or Err if it wasn’t a COW fault (real access violation).
- sys_
fork - SYS_PROC_FORK (302): fork with copy-on-write address-space cloning.