Implement a proper block layer with partition support.
[pintos-anon] / src / threads / init.h
index b4820796255e054e649eb6352b1aa6c6e089719e..8a3df903481dacab972dbe1a8a31b49a2f04f739 100644 (file)
@@ -1,9 +1,12 @@
-#ifndef HEADER_INIT_H
-#define HEADER_INIT_H 1
+#ifndef THREADS_INIT_H
+#define THREADS_INIT_H
 
+#include <debug.h>
+#include <stdbool.h>
 #include <stddef.h>
+#include <stdint.h>
 
-extern size_t kernel_pages;
-extern size_t ram_pages;
+/* Page directory with kernel mappings only. */
+extern uint32_t *init_page_dir;
 
-#endif /* init.h */
+#endif /* threads/init.h */