Refactor mmap system call code to follow pintos style in indentation #67

Merged
sb3923 merged 1 commits from vm/syscall-mmap/styling into master 2024-12-06 18:15:48 +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);
}