Remove prototypes for removed functions power_off(), reboot().
[pintos-anon] / src / threads / init.h
index 622dea9c8caf1fcc22f04f1e32ce8c1620c56cad..06cf71e3895ef7c1ee8d1ad8b3069dff142a7cf0 100644 (file)
@@ -1,6 +1,8 @@
 #ifndef THREADS_INIT_H
 #define THREADS_INIT_H
 
+#include <debug.h>
+#include <stdbool.h>
 #include <stddef.h>
 #include <stdint.h>
 
@@ -8,6 +10,9 @@
 extern size_t ram_pages;
 
 /* Page directory with kernel mappings only. */
-extern uint32_t *base_page_dir;
+extern uint32_t *init_page_dir;
+
+/* -q: Power off when kernel tasks complete? */
+extern bool power_off_when_done;
 
 #endif /* threads/init.h */