Nucleus
Barry Improved page fault handling and mmap system call 665af0a (3 years, 2 months ago)
diff --git a/memory/namespace.h b/memory/namespace.h
index 20a8e20..bd5b0a1 100644
--- a/memory/namespace.h
+++ b/memory/namespace.h
@@ -27,4 +27,7 @@ struct VMRegion {
File *front, *back;
};
+VMRegion *vm_create_region(void *addr, size_t len, int prot, int flags,
+ off_t offset, File *back);
+
#endif