BarryServer : Git

All the code for all my projects
// BarryServer : Git / Nucleus / commit / 120a213e731827cb653242e5dc4b39229a539cb9 / memory

// Related

Nucleus

Barry Kernel printf routines 120a213 (3 years, 2 months ago)
diff --git a/memory/fault.c b/memory/fault.c
index 02c95ca..e916368 100644
--- a/memory/fault.c
+++ b/memory/fault.c
@@ -10,9 +10,9 @@
 #include <stdint.h>
 #include <string.h>
 #include <nucleus/cpu.h>
+#include <nucleus/kernel.h>
 #include <nucleus/memory.h>
 #include <nucleus/task.h>
-#include <nucleus/panic.h>
 #include "paging.h"
 #include "namespace.h"
 
diff --git a/memory/frame.c b/memory/frame.c
index 2e063d5..33ae7ef 100644
--- a/memory/frame.c
+++ b/memory/frame.c
@@ -9,8 +9,8 @@
 #include <stddef.h>
 #include <string.h>
 #include <sys/types.h>
+#include <nucleus/kernel.h>
 #include <nucleus/memory.h>
-#include <nucleus/panic.h>
 
 #define INDEX(a) ((a)/32)
 #define OFFSET(a) ((a)%32)