Changeset 280a27e in mainline for arch/mips32/src/debugger.c


Ignore:
Timestamp:
2006-04-16T13:16:44Z (19 years ago)
Author:
Josef Cejka <malyzelenyhnus@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
50de918
Parents:
c624b96
Message:

Printf ported back from uspace to kernel.
Printf calls changed to match new conventions.

File:
1 edited

Legend:

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

    rc624b96 r280a27e  
    243243                if (breakpoints[i].address) {
    244244                        symbol = get_symtab_entry(breakpoints[i].address);
    245                         printf("%d. 0x%p in %s\n",i,
     245                        printf("%d. %p in %s\n",i,
    246246                               breakpoints[i].address, symbol);
    247247                        printf("     Count(%d) ", breakpoints[i].counter);
     
    329329               
    330330                if (!(cur->flags & BKPOINT_FUNCCALL))
    331                         printf("***Breakpoint %d: 0x%p in %s.\n", i,
     331                        printf("***Breakpoint %d: %p in %s.\n", i,
    332332                               fireaddr, get_symtab_entry(istate->epc));
    333333
     
    342342                cur->flags |= BKPOINT_INPROG;
    343343        } else {
    344                 printf("***Breakpoint 0x%p in %s.\n", fireaddr,
     344                printf("***Breakpoint %p in %s.\n", fireaddr,
    345345                       get_symtab_entry(fireaddr));
    346346                /* Move on to next instruction */
Note: See TracChangeset for help on using the changeset viewer.