Move pagedir stuff into userprog.
[pintos-anon] / src / threads / init.h
1 #ifndef THREADS_INIT_H
2 #define THREADS_INIT_H
3
4 #include <stddef.h>
5 #include <stdint.h>
6
7 /* Physical memory size, in 4 kB pages. */
8 extern size_t ram_pages;
9
10 /* Page directory with kernel mappings only. */
11 extern uint32_t *base_page_dir;
12
13 #endif /* threads/init.h */