Swap names of power_off and do_power_off().
[pintos-anon] / src / threads / init.h
index fed649bb60e08a93b4c7c97ac3f1d02b04535653..555804a4efddff75b72c5d2a89aaec880440317e 100644 (file)
@@ -1,9 +1,16 @@
-#ifndef HEADER_INIT_H
-#define HEADER_INIT_H 1
+#ifndef THREADS_INIT_H
+#define THREADS_INIT_H
 
+#include <debug.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 *base_page_dir;
+
+void power_off (void) NO_RETURN;
+
+#endif /* threads/init.h */