aboutsummaryrefslogtreecommitdiff
path: root/kernel/vm/mmap.c
diff options
context:
space:
mode:
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)
{