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);
+
}