Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEugene Tarassov2011-12-13 19:01:53 +0000
committerEugene Tarassov2011-12-13 19:01:53 +0000
commit3a495ec3da9a4ee3fb9e1db7a4b8dd3ccb887ba2 (patch)
tree58d5f868b7a5b3924970fd71ce141244780a0070
parentbd9b2e9b967359e79dead8a2a2935d0fdcbafae3 (diff)
downloadorg.eclipse.tcf.agent-3a495ec3da9a4ee3fb9e1db7a4b8dd3ccb887ba2.tar.gz
org.eclipse.tcf.agent-3a495ec3da9a4ee3fb9e1db7a4b8dd3ccb887ba2.tar.xz
org.eclipse.tcf.agent-3a495ec3da9a4ee3fb9e1db7a4b8dd3ccb887ba2.zip
TCF Agent: removed unwanted printf.
-rw-r--r--agent/tcf/services/elf-loader.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/agent/tcf/services/elf-loader.c b/agent/tcf/services/elf-loader.c
index e71e241c..9cb17dff 100644
--- a/agent/tcf/services/elf-loader.c
+++ b/agent/tcf/services/elf-loader.c
@@ -206,7 +206,6 @@ static ContextAddress find_module(Context * ctx, ELF_File * exe_file, ELF_File *
ELF_File * link_file = NULL;
if (elf_read_memory_word(ctx, exe_file, link + offs_l_addr, &l_addr) < 0) exception(errno);
elf_map_to_link_time_address(ctx, l_addr, &link_file, NULL);
- //printf("link 0x%016" PRIX64 " 0x%016" PRIX64 " 0x%016" PRIX64 " 0x%X\n", (U8_T)link, (U8_T)l_addr, (U8_T)l_tls_modid, link_file);
if (link_file != NULL) {
if (link_file == module) return l_tls_modid;
if (link_file->debug_info_file_name != NULL &&

Back to the top