BarryServer : Git

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

// Related

Nucleus

Barry File system namespace b085b26 (3 years, 3 months ago)
diff --git a/task/task.c b/task/task.c
index 7026698..87c0c79 100644
--- a/task/task.c
+++ b/task/task.c
@@ -77,6 +77,10 @@ init_tasking(void)
 	asm volatile("mov %%cr3, %0" : "=r" (current->pageDir));
 	current->state = RUNNING;
 
+	/* File System namespace */
+	current->fs = new(&fsType);
+
 	init_scheduler();
 	register_interrupt(0, timer_handler);
+
 }