Changeset 0132630 in mainline for arch/mips32/src/debugger.c


Ignore:
Timestamp:
2006-01-03T21:55:31Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b524c5e0
Parents:
93e90c7
Message:

Add 'version' and 'cpus' kconsole commands.
Remove leading p from names of p* commands.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/mips32/src/debugger.c

    r93e90c7 r0132630  
    4242
    4343static int cmd_print_breakpoints(cmd_arg_t *argv);
    44 static cmd_info_t pbkpt_info = {
    45         .name = "pbkpt",
     44static cmd_info_t bkpts_info = {
     45        .name = "bkpts",
    4646        .description = "Print breakpoint table.",
    4747        .func = cmd_print_breakpoints,
     
    265265                breakpoints[i].address = NULL;
    266266       
    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);
    270270
    271271        cmd_initialize(&delbkpt_info);
Note: See TracChangeset for help on using the changeset viewer.