X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fthreads%2Finit.h;h=a6fec055d0b66067fd590441b06c2d2a141492ea;hb=d4711f749a61550fc1e64e2f78af1e8827b92de3;hp=622dea9c8caf1fcc22f04f1e32ce8c1620c56cad;hpb=b0a700d18f0a0a8c87e1a4fff3a2108e0edb0fbc;p=pintos-anon diff --git a/src/threads/init.h b/src/threads/init.h index 622dea9..a6fec05 100644 --- a/src/threads/init.h +++ b/src/threads/init.h @@ -1,6 +1,8 @@ #ifndef THREADS_INIT_H #define THREADS_INIT_H +#include +#include #include #include @@ -10,4 +12,9 @@ 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; + #endif /* threads/init.h */