Changeset cf85e24c in mainline for arch/amd64/src/debugger.c


Ignore:
Timestamp:
2006-04-22T23:00:26Z (19 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
12c7f27
Parents:
e692a27
Message:

printf-related and other code cleanup

File:
1 edited

Legend:

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

    re692a27 rcf85e24c  
    232232                        if (*((__native *) breakpoints[slot].address) != 0)
    233233                                return;
    234                         printf("**** Found ZERO on address %P ****\n",
     234                        printf("**** Found ZERO on address %p ****\n",
    235235                               slot, breakpoints[slot].address);
    236236                } else {
    237                         printf("Data watchpoint - new data: %P\n",
     237                        printf("Data watchpoint - new data: %p\n",
    238238                               *((__native *) breakpoints[slot].address));
    239239                }
    240240        }
    241         printf("Reached breakpoint %d:%P(%s)\n", slot, getip(istate),
     241        printf("Reached breakpoint %d:%p(%s)\n", slot, getip(istate),
    242242               get_symtab_entry(getip(istate)));
    243243        printf("***Type 'exit' to exit kconsole.\n");
Note: See TracChangeset for help on using the changeset viewer.