Changeset 7e752b2 in mainline for uspace/app/taskdump/taskdump.c
- Timestamp:
- 2010-11-26T01:33:20Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- bf61d3a
- Parents:
- 202f57b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/taskdump/taskdump.c
r202f57b r7e752b2 85 85 rc = connect_task(task_id); 86 86 if (rc < 0) { 87 printf("Failed connecting to task %" PRI dTASKID".\n", task_id);87 printf("Failed connecting to task %" PRIu64 ".\n", task_id); 88 88 return 1; 89 89 } … … 92 92 app_symtab = NULL; 93 93 94 printf("Dumping task '%s' (task ID %" PRI dTASKID").\n", app_name, task_id);94 printf("Dumping task '%s' (task ID %" PRIu64 ").\n", app_name, task_id); 95 95 autoload_syms(); 96 96 putchar('\n'); … … 126 126 if (rc < 0) { 127 127 printf("Error connecting\n"); 128 printf("ipc_connect_task(%" PRI dTASKID") -> %d ", task_id, rc);128 printf("ipc_connect_task(%" PRIu64 ") -> %d ", task_id, rc); 129 129 return rc; 130 130 } … … 168 168 core_file_name = *argv; 169 169 } else { 170 printf("Uknown option '% s'\n", arg[0]);170 printf("Uknown option '%c'\n", arg[0]); 171 171 print_syntax(); 172 172 return -1; … … 240 240 printf("Threads:\n"); 241 241 for (i = 0; i < n_threads; i++) { 242 printf(" [% d] hash: %p\n", 1+i,thash_buf[i]);242 printf(" [%zu] hash: %p\n", 1 + i, (void *) thash_buf[i]); 243 243 244 244 thread_dump(thash_buf[i]); … … 284 284 printf("Address space areas:\n"); 285 285 for (i = 0; i < n_areas; i++) { 286 printf(" [% d] flags: %c%c%c%c base: %p size: %p\n", 1+i,286 printf(" [%zu] flags: %c%c%c%c base: %p size: %zu\n", 1 + i, 287 287 (ainfo_buf[i].flags & AS_AREA_READ) ? 'R' : '-', 288 288 (ainfo_buf[i].flags & AS_AREA_WRITE) ? 'W' : '-', 289 289 (ainfo_buf[i].flags & AS_AREA_EXEC) ? 'X' : '-', 290 290 (ainfo_buf[i].flags & AS_AREA_CACHEABLE) ? 'C' : '-', 291 ainfo_buf[i].start_addr, ainfo_buf[i].size);291 (void *) ainfo_buf[i].start_addr, ainfo_buf[i].size); 292 292 } 293 293 … … 326 326 327 327 sym_pc = fmt_sym_address(pc); 328 printf("Thread %p crashed at %s. FP = %p\n", thash, sym_pc, fp); 328 printf("Thread %p crashed at %s. FP = %p\n", (void *) thash, 329 sym_pc, (void *) fp); 329 330 free(sym_pc); 330 331 … … 334 335 while (stacktrace_fp_valid(&st, fp)) { 335 336 sym_pc = fmt_sym_address(pc); 336 printf(" %p: %s\n", fp, sym_pc);337 printf(" %p: %s\n", (void *) fp, sym_pc); 337 338 free(sym_pc); 338 339 … … 457 458 458 459 if (rc == EOK) { 459 rc = asprintf(&str, "%p (%s+% p)",addr, name, offs);460 rc = asprintf(&str, "%p (%s+%zu)", (void *) addr, name, offs); 460 461 } else { 461 rc = asprintf(&str, "%p", addr);462 rc = asprintf(&str, "%p", (void *) addr); 462 463 } 463 464
Note:
See TracChangeset
for help on using the changeset viewer.