Implement a proper block layer with partition support.
[pintos-anon] / src / threads / init.h
index 555804a4efddff75b72c5d2a89aaec880440317e..8a3df903481dacab972dbe1a8a31b49a2f04f739 100644 (file)
@@ -2,15 +2,11 @@
 #define THREADS_INIT_H
 
 #include <debug.h>
+#include <stdbool.h>
 #include <stddef.h>
 #include <stdint.h>
 
-/* Physical memory size, in 4 kB pages. */
-extern size_t ram_pages;
-
 /* Page directory with kernel mappings only. */
-extern uint32_t *base_page_dir;
-
-void power_off (void) NO_RETURN;
+extern uint32_t *init_page_dir;
 
 #endif /* threads/init.h */