Changeset d3e938c in mainline for uspace/lib/c/generic/rtld/dynamic.c
- Timestamp:
- 2019-01-08T13:27:05Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 05cb995, 1567471, 1aa9eff, cdec2a1
- Parents:
- 9c4df21
- git-author:
- Jiri Svoboda <jiri@…> (2018-01-07 22:27:02)
- git-committer:
- Jiri Svoboda <jiri@…> (2019-01-08 13:27:05)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/rtld/dynamic.c
r9c4df21 rd3e938c 64 64 d_ptr = (void *)((uint8_t *)dp->d_un.d_ptr + bias); 65 65 d_val = dp->d_un.d_val; 66 DPRINTF("tag=%u ptr=0x% x val=%u\n", (unsigned)dp->d_tag,67 (u nsigned)d_ptr, (unsigned)d_val);66 DPRINTF("tag=%u ptr=0x%zx val=%zu\n", (unsigned)dp->d_tag, 67 (uintptr_t)d_ptr, (uintptr_t)d_val); 68 68 69 69 switch (dp->d_tag) {
Note:
See TracChangeset
for help on using the changeset viewer.