Merge branch 'vm/memory-mapped-files' into vm/virtual-memory/saleh

This commit is contained in:
sBubshait
2024-12-05 01:24:50 +00:00
11 changed files with 275 additions and 24 deletions

View File

@@ -259,7 +259,7 @@ try_fetch_page (void *upage, bool write)
/* Load the page into memory based on the type of data it is expecting. */
bool success = false;
switch (page->type) {
case PAGE_EXECUTABLE:
case PAGE_FILE:
success = page_load (page, page->writable);
break;
default: