New option -r to reboot the VM after actions are complete.
[pintos-anon] / src / threads / init.h
index 555804a4efddff75b72c5d2a89aaec880440317e..963cbd617d58a4e3e297a27ca17b55c6c0911a2e 100644 (file)
@@ -2,6 +2,7 @@
 #define THREADS_INIT_H
 
 #include <debug.h>
+#include <stdbool.h>
 #include <stddef.h>
 #include <stdint.h>
 
@@ -11,6 +12,10 @@ extern 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;
+void reboot (void);
 
 #endif /* threads/init.h */