Changeset 088cecc in mainline for kernel/arch/amd64/src/debugger.c
- Timestamp:
- 2008-03-10T19:24:15Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 07deef5
- Parents:
- c31d773
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/amd64/src/debugger.c
rc31d773 r088cecc 293 293 int cmd_del_breakpoint(cmd_arg_t *argv) 294 294 { 295 if (argv->intval < 0 || argv->intval > BKPOINTS_MAX) { 295 unative_t bpno = argv->intval; 296 if (bpno > BKPOINTS_MAX) { 296 297 printf("Invalid breakpoint number.\n"); 297 298 return 0;
Note:
See TracChangeset
for help on using the changeset viewer.