Refactor mmap system call code to follow pintos style in indentation

This commit is contained in:
sBubshait
2024-12-06 18:14:47 +00:00
parent 29c0b93711
commit d039b59b7c

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);
}