Changeset a000878c in mainline for kernel/arch/ia32/src
- Timestamp:
- 2010-02-25T19:11:25Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 958de16
- Parents:
- a634485
- Location:
- kernel/arch/ia32/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia32/src/cpu/cpu.c
ra634485 ra000878c 64 64 }; 65 65 66 static c har *vendor_str[] = {66 static const char *vendor_str[] = { 67 67 "Unknown Vendor", 68 68 "AMD", -
kernel/arch/ia32/src/interrupt.c
ra634485 ra000878c 65 65 void decode_istate(istate_t *istate) 66 66 { 67 char *symbol; 68 69 symbol = symtab_fmt_name_lookup(istate->eip); 70 67 const char *symbol = symtab_fmt_name_lookup(istate->eip); 68 71 69 if (CPU) 72 70 printf("----------------EXCEPTION OCCURED (cpu%u)----------------\n", CPU->id); 73 71 else 74 72 printf("----------------EXCEPTION OCCURED----------------\n"); 75 73 76 74 printf("%%eip: %#lx (%s)\n", istate->eip, symbol); 77 75 printf("ERROR_WORD=%#lx\n", istate->error_word); … … 80 78 printf("stack: %#lx, %#lx, %#lx, %#lx\n", istate->stack[0], istate->stack[1], istate->stack[2], istate->stack[3]); 81 79 printf(" %#lx, %#lx, %#lx, %#lx\n", istate->stack[4], istate->stack[5], istate->stack[6], istate->stack[7]); 82 80 83 81 stack_trace_istate(istate); 84 82 } -
kernel/arch/ia32/src/mm/frame.c
ra634485 ra000878c 27 27 */ 28 28 29 /** @addtogroup ia32mm 29 /** @addtogroup ia32mm 30 30 * @{ 31 31 */ … … 109 109 } 110 110 111 static c har *e820names[] = {111 static const char *e820names[] = { 112 112 "invalid", 113 113 "available", … … 122 122 { 123 123 unsigned int i; 124 c har *name;124 const char *name; 125 125 126 126 printf("Base Size Name\n");
Note:
See TracChangeset
for help on using the changeset viewer.