terminate backtrace for main thread
[pintos-anon] / src / threads / init.h
index fafb4924bfd1931fb4ced93a36d8e28fa97c1f7a..863d1de6df079ea8e7567e49d3d3298ec7c8ade3 100644 (file)
@@ -1,9 +1,17 @@
 #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;
+/* Page directory with kernel mappings only. */
+extern uint32_t *base_page_dir;
+
+/* -q: Power off when kernel tasks complete? */
+extern bool power_off_when_done;
+
+void power_off (void) NO_RETURN;
 
 #endif /* threads/init.h */