X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fthreads%2Finit.h;h=a6fec055d0b66067fd590441b06c2d2a141492ea;hb=2ce1eb4d6c0adc209f56789920362d455cca443e;hp=fed649bb60e08a93b4c7c97ac3f1d02b04535653;hpb=c9c283cb3e26a5b6d918ee47dcf8efe28522b18d;p=pintos-anon diff --git a/src/threads/init.h b/src/threads/init.h index fed649b..a6fec05 100644 --- a/src/threads/init.h +++ b/src/threads/init.h @@ -1,9 +1,20 @@ -#ifndef HEADER_INIT_H -#define HEADER_INIT_H 1 +#ifndef THREADS_INIT_H +#define THREADS_INIT_H +#include +#include #include +#include /* Physical memory size, in 4 kB pages. */ -size_t ram_pages; +extern size_t ram_pages; -#endif /* init.h */ +/* 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 */