Changeset f4c2b6a in mainline for kernel/arch/mips32
- Timestamp:
- 2008-06-03T14:59:48Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2c4fb51
- Parents:
- b63f8569
- Location:
- kernel/arch/mips32/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/mips32/src/debugger.c
rb63f8569 rf4c2b6a 153 153 154 154 /* Check, that the breakpoints do not conflict */ 155 for (i =0; i<BKPOINTS_MAX; i++) {155 for (i = 0; i < BKPOINTS_MAX; i++) { 156 156 if (breakpoints[i].address == (uintptr_t)argv->intval) { 157 157 printf("Duplicate breakpoint %d.\n", i); … … 315 315 /* Reinst only breakpoint */ 316 316 if ((breakpoints[i].flags & BKPOINT_REINST) \ 317 && (fireaddr == breakpoints[i].address+sizeof(unative_t))) {317 && (fireaddr == breakpoints[i].address + sizeof(unative_t))) { 318 318 cur = &breakpoints[i]; 319 319 break; -
kernel/arch/mips32/src/exception.c
rb63f8569 rf4c2b6a 162 162 */ 163 163 #ifdef CONFIG_DEBUG 164 printf("cpu% d: spurious interrupt (inum=%d)\n", CPU->id, i);164 printf("cpu%u: spurious interrupt (inum=%d)\n", CPU->id, i); 165 165 #endif 166 166 }
Note:
See TracChangeset
for help on using the changeset viewer.