Swap names of power_off and do_power_off().
[pintos-anon] / src / threads / init.h
index 622dea9c8caf1fcc22f04f1e32ce8c1620c56cad..555804a4efddff75b72c5d2a89aaec880440317e 100644 (file)
@@ -1,6 +1,7 @@
 #ifndef THREADS_INIT_H
 #define THREADS_INIT_H
 
+#include <debug.h>
 #include <stddef.h>
 #include <stdint.h>
 
@@ -10,4 +11,6 @@ extern size_t ram_pages;
 /* Page directory with kernel mappings only. */
 extern uint32_t *base_page_dir;
 
+void power_off (void) NO_RETURN;
+
 #endif /* threads/init.h */