Rename ram_pages to init_ram_pages.
[pintos-anon] / src / threads / init.h
index 8dfb6515e78c1075ad75f8a7365ab82537d42556..da6cc04c81dfbfeec3c5dd007029a4caa147fab7 100644 (file)
@@ -1,16 +1,15 @@
-#ifndef HEADER_INIT_H
-#define HEADER_INIT_H 1
+#ifndef THREADS_INIT_H
+#define THREADS_INIT_H
 
+#include <debug.h>
+#include <stdbool.h>
 #include <stddef.h>
+#include <stdint.h>
 
 /* Physical memory size, in 4 kB pages. */
-size_t ram_pages;
+extern size_t init_ram_pages;
 
-/* Kernel command line. */
-extern int argc;
-extern char *argv[];
+/* Page directory with kernel mappings only. */
+extern uint32_t *init_page_dir;
 
-struct tss *tss;
-
-
-#endif /* init.h */
+#endif /* threads/init.h */