Changeset 20d50a1 in mainline for arch/amd64/src/interrupt.c
- Timestamp:
- 2006-01-13T13:02:45Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f9425006
- Parents:
- 0369911
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/amd64/src/interrupt.c
r0369911 r20d50a1 36 36 #include <arch/asm.h> 37 37 #include <mm/tlb.h> 38 #include <mm/as.h> 38 39 #include <arch.h> 39 40 #include <symtab.h> … … 125 126 } 126 127 127 128 129 128 void page_fault(int n, void *stack) 130 129 { 131 print_info_errcode(n,stack); 132 printf("Page fault address: %Q\n", read_cr2()); 133 panic("page fault\n"); 130 __address page; 131 132 page = read_cr2(); 133 if (!as_page_fault(page)) { 134 print_info_errcode(n,stack); 135 printf("Page fault address: %Q\n", page); 136 panic("page fault\n"); 137 } 134 138 } 135 139
Note:
See TracChangeset
for help on using the changeset viewer.