Changeset cefb126 in mainline for kernel/arch/amd64/src/debugger.c


Ignore:
Timestamp:
2010-07-02T14:19:30Z (14 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
89c57b6
Parents:
fe7abd0 (diff), e3ee9b9 (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.
Message:

Merge mainline changes.

File:
1 edited

Legend:

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

    rfe7abd0 rcefb126  
    230230                                return;
    231231                       
    232                         printf("*** Found ZERO on address %lx (slot %d) ***\n",
     232                        printf("*** Found ZERO on address %" PRIp " (slot %d) ***\n",
    233233                            breakpoints[slot].address, slot);
    234234                } else {
    235                         printf("Data watchpoint - new data: %lx\n",
     235                        printf("Data watchpoint - new data: %" PRIp "\n",
    236236                            *((unative_t *) breakpoints[slot].address));
    237237                }
    238238        }
    239239       
    240         printf("Reached breakpoint %d:%lx (%s)\n", slot, getip(istate),
     240        printf("Reached breakpoint %d:%" PRIp " (%s)\n", slot, getip(istate),
    241241            symtab_fmt_name_lookup(getip(istate)));
    242242       
     
    349349{
    350350#ifdef __32_BITS__
    351         printf("#  Count Address    In symbol\n");
    352         printf("-- ----- ---------- ---------\n");
     351        printf("[nr] [count] [address ] [in symbol\n");
    353352#endif
    354353       
    355354#ifdef __64_BITS__
    356         printf("#  Count Address            In symbol\n");
    357         printf("-- ----- ------------------ ---------\n");
     355        printf("[nr] [count] [address         ] [in symbol\n");
    358356#endif
    359357       
     
    365363                       
    366364#ifdef __32_BITS__
    367                         printf("%-2u %-5" PRIs " %p %s\n", i,
     365                        printf("%-4u %7" PRIs " %p %s\n", i,
    368366                            breakpoints[i].counter, breakpoints[i].address,
    369367                            symbol);
     
    371369                       
    372370#ifdef __64_BITS__
    373                         printf("%-2u %-5" PRIs " %p %s\n", i,
     371                        printf("%-4u %7" PRIs " %p %s\n", i,
    374372                            breakpoints[i].counter, breakpoints[i].address,
    375373                            symbol);
Note: See TracChangeset for help on using the changeset viewer.