summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2016-08-12 17:57:51 +1000
committerChris Johns <chrisj@rtems.org>2016-08-15 15:46:31 +1000
commit25c5583f92419dd03869a55e7f71e62b363e2f0f (patch)
treeb2efee0c79b32adee6fed70c0ba71f382463b521
parentbsps/powerpc: Fix shared console driver (diff)
downloadrtems-25c5583f92419dd03869a55e7f71e62b363e2f0f.tar.bz2
libdl: Add trace output when reading section headers.
-rw-r--r--cpukit/libdl/rtl-elf.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/cpukit/libdl/rtl-elf.c b/cpukit/libdl/rtl-elf.c
index 0eee5400c1..1b7c87448a 100644
--- a/cpukit/libdl/rtl-elf.c
+++ b/cpukit/libdl/rtl-elf.c
@@ -644,6 +644,9 @@ rtems_rtl_elf_parse_sections (rtems_rtl_obj_t* obj, int fd, Elf_Ehdr* ehdr)
*/
off = obj->ooffset + ehdr->e_shoff + (((uint32_t) section) * ehdr->e_shentsize);
+ if (rtems_rtl_trace (RTEMS_RTL_TRACE_DETAIL))
+ printf ("rtl: section header: %2d: offset=%d\n", section, (int) off);
+
if (!rtems_rtl_obj_cache_read_byval (sects, fd, off, &shdr, sizeof (shdr)))
return false;