From 75386e11313bbeef0adb2aadf046036f92dc22b6 Mon Sep 17 00:00:00 2001 From: Chris Johns Date: Fri, 12 Aug 2016 17:57:51 +1000 Subject: libdl: Add trace output when reading section headers. --- cpukit/libdl/rtl-elf.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cpukit/libdl/rtl-elf.c b/cpukit/libdl/rtl-elf.c index 48d81df124..b686a4812f 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; -- cgit v1.2.3