Ignore:
File:
1 edited

Legend:

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

    r49ace23 r214ec25c  
    230230                                return;
    231231                       
    232                         printf("*** Found ZERO on address %" PRIp " (slot %d) ***\n",
     232                        printf("*** Found ZERO on address %lx (slot %d) ***\n",
    233233                            breakpoints[slot].address, slot);
    234234                } else {
    235                         printf("Data watchpoint - new data: %" PRIp "\n",
     235                        printf("Data watchpoint - new data: %lx\n",
    236236                            *((unative_t *) breakpoints[slot].address));
    237237                }
    238238        }
    239239       
    240         printf("Reached breakpoint %d:%" PRIp " (%s)\n", slot, getip(istate),
     240        printf("Reached breakpoint %d:%lx (%s)\n", slot, getip(istate),
    241241            symtab_fmt_name_lookup(getip(istate)));
    242242       
     
    349349{
    350350#ifdef __32_BITS__
    351         printf("[nr] [count] [address ] [in symbol\n");
     351        printf("#  Count Address    In symbol\n");
     352        printf("-- ----- ---------- ---------\n");
    352353#endif
    353354       
    354355#ifdef __64_BITS__
    355         printf("[nr] [count] [address         ] [in symbol\n");
     356        printf("#  Count Address            In symbol\n");
     357        printf("-- ----- ------------------ ---------\n");
    356358#endif
    357359       
     
    363365                       
    364366#ifdef __32_BITS__
    365                         printf("%-4u %7" PRIs " %p %s\n", i,
     367                        printf("%-2u %-5" PRIs " %p %s\n", i,
    366368                            breakpoints[i].counter, breakpoints[i].address,
    367369                            symbol);
     
    369371                       
    370372#ifdef __64_BITS__
    371                         printf("%-4u %7" PRIs " %p %s\n", i,
     373                        printf("%-2u %-5" PRIs " %p %s\n", i,
    372374                            breakpoints[i].counter, breakpoints[i].address,
    373375                            symbol);
Note: See TracChangeset for help on using the changeset viewer.