Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 4389 → Rev 4390

/branches/tracing/uspace/app/debug/cmd.c
86,7 → 86,7
(void)argc;
addr = strtoul(argv[1], NULL, 0);
 
cons_printf("You requested a breakpoint at 0x%x\n", addr);
cons_printf("You requested a breakpoint at 0x%lx\n", addr);
// arch_breakpoint_add(addr);
breakpoint_add(addr);
}
109,7 → 109,7
if (dt->id == tid) {
cwt = dt;
cons_printf("changed working thread to: %d [hash 0x%x]\n",
cons_printf("changed working thread to: %d [hash 0x%lx]\n",
cwt->id, cwt->hash);
} else {
cons_printf("no such thread\n");
195,7 → 195,7
return;
}
 
cons_printf("0x%x:", addr);
cons_printf("0x%lx:", addr);
for (i = 0; i < to_read; ++i) {
cons_printf(" %02x", buf[i]);
}
263,7 → 263,7
dt = NULL;
for (cur = dthreads.next; cur != &dthreads; cur = cur->next) {
dt = list_get_instance(cur, dthread_t, link);
cons_printf("%d [hash 0x%x]\n", dt->id, dt->hash);
cons_printf("%d [hash 0x%lx]\n", dt->id, dt->hash);
}
}