Ignore:
File:
1 edited

Legend:

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

    ra000878c re16e0d59  
    253253{
    254254        unsigned int i;
     255        char *symbol;
    255256       
    256257        printf("#  Count Address    INPROG ONESHOT FUNCCALL In symbol\n");
    257258        printf("-- ----- ---------- ------ ------- -------- ---------\n");
    258259       
    259         for (i = 0; i < BKPOINTS_MAX; i++) {
     260        for (i = 0; i < BKPOINTS_MAX; i++)
    260261                if (breakpoints[i].address) {
    261                         const char *symbol = symtab_fmt_name_lookup(
     262                        symbol = symtab_fmt_name_lookup(
    262263                            breakpoints[i].address);
    263                        
     264
    264265                        printf("%-2u %-5d %#10zx %-6s %-7s %-8s %s\n", i,
    265266                            breakpoints[i].counter, breakpoints[i].address,
     
    269270                            BKPOINT_FUNCCALL) ? "true" : "false"), symbol);
    270271                }
    271         }
    272        
    273272        return 1;
    274273}
Note: See TracChangeset for help on using the changeset viewer.