Fukurō
A highly portable microkernel
Loading...
Searching...
No Matches
pmap.h
Go to the documentation of this file.
1#ifndef FUKURO_I386_PMAP_H
2# define FUKURO_I386_PMAP_H 1
3
4# include <stdint.h>
5# include <fukuro/spinlock.h>
6
7struct pmap
8{
9 uintptr_t *dirbase;
10
12
13 struct spinlock lock;
14};
15
16#endif /* !FUKURO_I386_PMAP_H */
Definition pmap.h:8
int refcount
Definition pmap.h:11
struct spinlock lock
Definition pmap.h:13
uintptr_t * dirbase
Definition pmap.h:9
Definition spinlock.h:5