Rename base_page_dir to init_page_dir.
[pintos-anon] / src / threads / init.h
index fed649bb60e08a93b4c7c97ac3f1d02b04535653..f28303cffbf9731086b57c3c08373c58067d3114 100644 (file)
@@ -1,9 +1,21 @@
-#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>
 
 /* Physical memory size, in 4 kB pages. */
-size_t ram_pages;
+extern size_t ram_pages;
 
-#endif /* init.h */
+/* Page directory with kernel mappings only. */
+extern uint32_t *init_page_dir;
+
+/* -q: Power off when kernel tasks complete? */
+extern bool power_off_when_done;
+
+void power_off (void) NO_RETURN;
+void reboot (void);
+
+#endif /* threads/init.h */