Changeset 84439d7 in mainline for kernel/generic/src/debug/debug.c
- Timestamp:
- 2010-12-05T09:34:46Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 75732da
- Parents:
- 56b962d (diff), 35537a7 (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/debug/debug.c
r56b962d r84439d7 52 52 if (symtab_name_lookup((uintptr_t) call_site, &call_site_sym, 53 53 &call_site_off) == EOK) 54 printf("%s +%" PRIp "->%s\n", call_site_sym, call_site_off,55 fn_sym);54 printf("%s()+%p->%s()\n", call_site_sym, 55 (void *) call_site_off, fn_sym); 56 56 else 57 printf("->%s \n", fn_sym);57 printf("->%s()\n", fn_sym); 58 58 } 59 59 … … 67 67 if (symtab_name_lookup((uintptr_t) call_site, &call_site_sym, 68 68 &call_site_off) == EOK) 69 printf("%s +%" PRIp "<-%s\n", call_site_sym, call_site_off,70 fn_sym);69 printf("%s()+%p<-%s()\n", call_site_sym, 70 (void *) call_site_off, fn_sym); 71 71 else 72 printf("<-%s \n", fn_sym);72 printf("<-%s()\n", fn_sym); 73 73 } 74 74
Note:
See TracChangeset
for help on using the changeset viewer.