summaryrefslogtreecommitdiffstats
path: root/pintos-progos/threads/init.h
blob: 8a3df903481dacab972dbe1a8a31b49a2f04f739 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef THREADS_INIT_H
#define THREADS_INIT_H

#include <debug.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>

/* Page directory with kernel mappings only. */
extern uint32_t *init_page_dir;

#endif /* threads/init.h */