Changeset 0132630 in mainline for arch/mips32/src/debugger.c
- Timestamp:
- 2006-01-03T21:55:31Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b524c5e0
- Parents:
- 93e90c7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/mips32/src/debugger.c
r93e90c7 r0132630 42 42 43 43 static int cmd_print_breakpoints(cmd_arg_t *argv); 44 static cmd_info_t pbkpt_info = {45 .name = " pbkpt",44 static cmd_info_t bkpts_info = { 45 .name = "bkpts", 46 46 .description = "Print breakpoint table.", 47 47 .func = cmd_print_breakpoints, … … 265 265 breakpoints[i].address = NULL; 266 266 267 cmd_initialize(& pbkpt_info);268 if (!cmd_register(& pbkpt_info))269 panic("could not register command %s\n", pbkpt_info.name);267 cmd_initialize(&bkpts_info); 268 if (!cmd_register(&bkpts_info)) 269 panic("could not register command %s\n", bkpts_info.name); 270 270 271 271 cmd_initialize(&delbkpt_info);
Note:
See TracChangeset
for help on using the changeset viewer.