aboutsummaryrefslogtreecommitdiff
path: root/kernel/vm/mmap.c
diff options
context:
space:
mode:
authorMichael Foiani <mfoiani@cs.brown.edu>2024-05-15 18:17:49 -0400
committerMichael Foiani <mfoiani@cs.brown.edu>2024-05-15 18:17:49 -0400
commit3942ec1841219e9d1033f583ebfcf687cb76a4af (patch)
tree13168b263ee28ce2d0867cac47b0fc90bf23b815 /kernel/vm/mmap.c
parent77408081bd2622c50d9acbcec18f1c598738fdaa (diff)
FINAfinal submission (for real this time)HEADmaster
Diffstat (limited to 'kernel/vm/mmap.c')
-rw-r--r--kernel/vm/mmap.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/kernel/vm/mmap.c b/kernel/vm/mmap.c
index a298df4..6fd5340 100644
--- a/kernel/vm/mmap.c
+++ b/kernel/vm/mmap.c
@@ -55,8 +55,6 @@
long do_mmap(void *addr, size_t len, int prot, int flags, int fd, off_t off,
void **ret)
{
- // NOT_YET_IMPLEMENTED("VM: do_mmap");
-
// check if addr is page aligned when MAP_FIXED is specified
if (PAGE_ALIGNED(addr) == 0 && (flags & MAP_FIXED))
{
@@ -194,8 +192,6 @@ long do_mmap(void *addr, size_t len, int prot, int flags, int fd, off_t off,
*/
long do_munmap(void *addr, size_t len)
{
- // NOT_YET_IMPLEMENTED("VM: do_munmap");
-
// Check if addr is page aligned
if (PAGE_ALIGNED(addr) == 0)
{