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=8dfb6515e78c1075ad75f8a7365ab82537d42556;hb=d88e8f5938d6aae4b58149b259fd485278a83ef9;hpb=bf866bc97d077fa3757b4aceaa7a6b41e7298c73 diff --git a/src/threads/init.h b/src/threads/init.h index 8dfb651..963cbd6 100644 --- a/src/threads/init.h +++ b/src/threads/init.h @@ -1,16 +1,21 @@ -#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; -/* Kernel command line. */ -extern int argc; -extern char *argv[]; +/* Page directory with kernel mappings only. */ +extern uint32_t *base_page_dir; -struct tss *tss; +/* -q: Power off when kernel tasks complete? */ +extern bool power_off_when_done; +void power_off (void) NO_RETURN; +void reboot (void); -#endif /* init.h */ +#endif /* threads/init.h */