BarryServer : Git

All the code for all my projects
// BarryServer : Git / Nucleus / commit / 381dc7b37e5dfe249412ce3559e8b0dcd56f6267 / task / task.c

// Related

Nucleus

Barry Virtual Memory Regions and namespace 381dc7b (3 years, 3 months ago)
diff --git a/task/task.c b/task/task.c
index 0e53b77..b23c54b 100644
--- a/task/task.c
+++ b/task/task.c
@@ -81,9 +81,10 @@ init_tasking(void)
 
 	/* File System namespace */
 	current->fs = new(&fsType);
-
 	/* Files namespace */
 	current->files = new(&filesType);
+	/* Virtual Memory namespace */
+	current->vm = new(&virtualMemoryType);
 
 	init_scheduler();
 	register_interrupt(0, timer_handler);