BarryServer : Git

All the code for all my projects
// BarryServer : Git / Nucleus / commit / 665af0a43af0d406733bda816ca1a7b2f9184319 / memory / namespace.h

// Related

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