Changeset 7f341820 in mainline for kernel/arch/mips32/src/debugger.c
- Timestamp:
- 2009-02-17T14:09:31Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 30e2bba
- Parents:
- 85156d3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/mips32/src/debugger.c
r85156d3 r7f341820 163 163 if (breakpoints[i].address == (uintptr_t)argv->intval) { 164 164 printf("Duplicate breakpoint %d.\n", i); 165 spinlock_unlock(&bkpoint s_lock);165 spinlock_unlock(&bkpoint_lock); 166 166 return 0; 167 167 } else if (breakpoints[i].address == (uintptr_t)argv->intval + … … 170 170 printf("Adjacent breakpoints not supported, conflict " 171 171 "with %d.\n", i); 172 spinlock_unlock(&bkpoint s_lock);172 spinlock_unlock(&bkpoint_lock); 173 173 return 0; 174 174 } 175 175 176 176 } 177 177
Note:
See TracChangeset
for help on using the changeset viewer.