Add mmap module in vm defining mmap_entry structure and some helper functions

This commit is contained in:
sBubshait
2024-12-04 13:00:16 +00:00
parent 8047c65227
commit acc768e177
3 changed files with 20 additions and 0 deletions

View File

@@ -64,6 +64,7 @@ userprog_SRC += userprog/tss.c # TSS management.
# Virtual memory code.
vm_SRC += vm/frame.c # Frame table manager.
vm_SRC += vm/page.c # Page table manager.
vm_SRC += vm/mmap.c # Memory-mapped files.
vm_SRC += devices/swap.c # Swap block manager.
# Filesystem code.