Merge branch 'vm/syscall-mmap/styling' into 'master'

Refactor mmap system call code to follow pintos style in indentation

See merge request lab2425_autumn/pintos_22!67
This commit is contained in:
Saleh Bubshait
2024-12-06 18:15:47 +00:00

View File

@@ -87,6 +87,7 @@ mmap_unmap (struct mmap_entry *mmap)
hash_delete (&thread_current ()->pages, &page->elem);
}
/* Close the file and free the mmap entry. */
file_close (mmap->file);
free (mmap);
}