EECS 482: P3 - Advanced Pager
Languages & Tools Used: C++
- Implemented a memory management pager for an OS simulation that handles process creation, utilizing copy-on-write semantics to efficiently manage the duplication of parent process memory for child processes.
- Developed mapping function to extend process memory arenas with both swap-backed and file-backed pages, incorporating eager swap reservation and file sharing to maintain data integrity and system performance.
- Designed and managed page fault handling for read/write access violations, and created a cleanup routine to release resources associated with terminated processes.