Changeset 5f83634 in mainline for kernel/generic
- Timestamp:
- 2010-07-12T16:45:05Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6b1a85c
- Parents:
- bee2d4c (diff), 8078180 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - Location:
- kernel/generic
- Files:
-
- 2 edited
-
include/mm/as.h (modified) (1 diff)
-
src/debug/panic.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/mm/as.h
rbee2d4c r5f83634 171 171 PF_ACCESS_READ, 172 172 PF_ACCESS_WRITE, 173 PF_ACCESS_EXEC 173 PF_ACCESS_EXEC, 174 PF_ACCESS_UNKNOWN 174 175 } pf_access_t; 175 176 -
kernel/generic/src/debug/panic.c
rbee2d4c r5f83634 61 61 } else if (cat == PANIC_BADTRAP) { 62 62 printf("BAD TRAP %ld.\n", address); 63 if (fmt) { 64 vprintf(fmt, args); 65 printf("\n"); 66 } 63 67 } else if (cat == PANIC_MEMTRAP) { 64 68 printf("A BAD MEMORY ACCESS WHILE "); … … 72 76 printf("REFERENCING"); 73 77 printf(" ADDRESS %p.\n", address); 78 if (fmt) { 79 vprintf(fmt, args); 80 printf("\n"); 81 } 74 82 } else { 75 83 printf("THE FOLLOWING REASON:\n"); 76 84 vprintf(fmt, args); 85 printf("\n"); 77 86 } 78 87 va_end(args);
Note:
See TracChangeset
for help on using the changeset viewer.
