Changeset 567807b1 in mainline for arch/ia32/include/mm/page.h
- Timestamp:
- 2006-05-24T17:03:29Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8d6bc2d5
- Parents:
- 82da5f5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ia32/include/mm/page.h
r82da5f5 r567807b1 91 91 #include <typedefs.h> 92 92 93 /* Page fault error codes. */ 94 95 /** When bit on this position is 0, the page fault was caused by a not-present page. */ 96 #define PFERR_CODE_P (1<<0) 97 98 /** When bit on this position is 1, the page fault was caused by a write. */ 99 #define PFERR_CODE_RW (1<<1) 100 101 /** When bit on this position is 1, the page fault was caused in user mode. */ 102 #define PFERR_CODE_US (1<<2) 103 104 /** When bit on this position is 1, a reserved bit was set in page directory. */ 105 #define PFERR_CODE_RSVD (1<<3) 106 93 107 /** Page Table Entry. */ 94 108 struct page_specifier { … … 139 153 140 154 extern void page_arch_init(void); 155 extern void page_fault(int n, istate_t *istate); 141 156 142 157 #endif /* __ASM__ */
Note:
See TracChangeset
for help on using the changeset viewer.