Changeset 19b3cc6 in mainline for kernel/arch/mips32/src/debugger.c
- Timestamp:
- 2014-01-17T23:12:10Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e26a9d95
- Parents:
- fddffb2 (diff), facc34d (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/mips32/src/debugger.c
rfddffb2 r19b3cc6 39 39 #include <console/cmd.h> 40 40 #include <print.h> 41 #include <log.h> 41 42 #include <panic.h> 42 43 #include <arch.h> … … 294 295 cmd_initialize(&bkpts_info); 295 296 if (!cmd_register(&bkpts_info)) 296 printf("Cannot register command %s\n", bkpts_info.name); 297 log(LF_OTHER, LVL_WARN, "Cannot register command %s", 298 bkpts_info.name); 297 299 298 300 cmd_initialize(&delbkpt_info); 299 301 if (!cmd_register(&delbkpt_info)) 300 printf("Cannot register command %s\n", delbkpt_info.name); 302 log(LF_OTHER, LVL_WARN, "Cannot register command %s", 303 delbkpt_info.name); 301 304 302 305 cmd_initialize(&addbkpt_info); 303 306 if (!cmd_register(&addbkpt_info)) 304 printf("Cannot register command %s\n", addbkpt_info.name); 307 log(LF_OTHER, LVL_WARN, "Cannot register command %s", 308 addbkpt_info.name); 305 309 306 310 cmd_initialize(&addbkpte_info); 307 311 if (!cmd_register(&addbkpte_info)) 308 printf("Cannot register command %s\n", addbkpte_info.name); 312 log(LF_OTHER, LVL_WARN, "Cannot register command %s", 313 addbkpte_info.name); 309 314 #endif /* CONFIG_KCONSOLE */ 310 315 }
Note:
See TracChangeset
for help on using the changeset viewer.