X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pintos-anon;a=blobdiff_plain;f=src%2Fthreads%2Finit.h;h=963cbd617d58a4e3e297a27ca17b55c6c0911a2e;hp=555804a4efddff75b72c5d2a89aaec880440317e;hb=d88e8f5938d6aae4b58149b259fd485278a83ef9;hpb=a258f34101def6ad8781b273c1603bb8c7091077 diff --git a/src/threads/init.h b/src/threads/init.h index 555804a..963cbd6 100644 --- a/src/threads/init.h +++ b/src/threads/init.h @@ -2,6 +2,7 @@ #define THREADS_INIT_H #include +#include #include #include @@ -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 */