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=1d6c5c6fdd2d88bdaf765e672f8924687d42f32a;hb=a03618133f7df0954802a470a4bee7674f7aed45;hpb=e4b11e55cce16307ffae87d90c08bacb1a2f3c66 diff --git a/src/threads/init.h b/src/threads/init.h index 1d6c5c6..8a3df90 100644 --- a/src/threads/init.h +++ b/src/threads/init.h @@ -1,11 +1,12 @@ -#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; +/* Page directory with kernel mappings only. */ +extern uint32_t *init_page_dir; -struct tss *tss; - -#endif /* init.h */ +#endif /* threads/init.h */