Rev 2071 | Rev 2465 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 2071 | Rev 2089 | ||
|---|---|---|---|
| Line 102... | Line 102... | ||
| 102 | #define PTE_WRITABLE_ARCH(pte) 1 |
102 | #define PTE_WRITABLE_ARCH(pte) 1 |
| 103 | #define PTE_EXECUTABLE_ARCH(pte) 1 |
103 | #define PTE_EXECUTABLE_ARCH(pte) 1 |
| 104 | 104 | ||
| 105 | #ifndef __ASM__ |
105 | #ifndef __ASM__ |
| 106 | 106 | ||
| 107 | #include <mm/page.h> |
107 | #include <mm/mm.h> |
| 108 | #include <arch/mm/frame.h> |
108 | #include <arch/interrupt.h> |
| 109 | #include <arch/types.h> |
- | |
| 110 | 109 | ||
| 111 | static inline int get_pt_flags(pte_t *pt, index_t i) |
110 | static inline int get_pt_flags(pte_t *pt, index_t i) |
| 112 | { |
111 | { |
| 113 | pte_t *p = &pt[i]; |
112 | pte_t *p = &pt[i]; |
| 114 | 113 | ||