X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pintos-anon;a=blobdiff_plain;f=src%2Fthreads%2Finit.h;h=8a3df903481dacab972dbe1a8a31b49a2f04f739;hp=e23269de24568962d5d2ba29696e02414bc6f97e;hb=a03618133f7df0954802a470a4bee7674f7aed45;hpb=6590923cc6884c88389dc5333e7f113d25022c36 diff --git a/src/threads/init.h b/src/threads/init.h index e23269d..8a3df90 100644 --- a/src/threads/init.h +++ b/src/threads/init.h @@ -1,14 +1,12 @@ -#ifndef HEADER_INIT_H -#define HEADER_INIT_H 1 +#ifndef THREADS_INIT_H +#define THREADS_INIT_H +#include +#include #include +#include -struct tss *tss; +/* Page directory with kernel mappings only. */ +extern uint32_t *init_page_dir; -extern size_t kernel_pages; -extern size_t ram_pages; - -extern int argc; -extern char *argv[]; - -#endif /* init.h */ +#endif /* threads/init.h */