blob: 9435954c9472a61f820a4304370ae1d53534f22a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef TYPES_H_
#define TYPES_H_
#ifndef ASM_SRC
#ifdef KERNEL_SRC
// we define these here instead of in vm.h in order to get around a
// nasty chick/egg dependency between procs.h and vm.h
typedef uint32_t pde_t; // page directory entry
typedef uint32_t pte_t; // page table entry
#endif /* KERNEL_SRC */
#endif
#endif
|