diff options
author | Andreas Jaeger <aj@suse.de> | 2002-02-06 14:19:54 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2002-02-06 14:19:54 +0000 |
commit | 64b6bd34ef7cd7db0d87cb49f38b3138831f6d6f (patch) | |
tree | 038884b82b4bf5db6a3c3fe200dba322032b0259 /elf/dl-lookup.c | |
parent | cff26a3ed5bd059083d209d78882bd50f9c427ed (diff) | |
download | glibc-64b6bd34ef7cd7db0d87cb49f38b3138831f6d6f.tar.gz glibc-64b6bd34ef7cd7db0d87cb49f38b3138831f6d6f.tar.xz glibc-64b6bd34ef7cd7db0d87cb49f38b3138831f6d6f.zip |
Update.
* elf/dl-error.c: Likewise. * elf/dl-fini.c: Likewise. * elf/dl-runtime.c: Likewise. * elf/do-lookup.h: Likewise.
Diffstat (limited to 'elf/dl-lookup.c')
-rw-r--r-- | elf/dl-lookup.c | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/elf/dl-lookup.c b/elf/dl-lookup.c index 49ee42ad3c..8de301eaa8 100644 --- a/elf/dl-lookup.c +++ b/elf/dl-lookup.c @@ -168,11 +168,11 @@ add_dependency (struct link_map *undef_map, struct link_map *map) /* Display information if we are debugging. */ if (__builtin_expect (GL(dl_debug_mask) & DL_DEBUG_FILES, 0)) - INT(_dl_debug_printf) ("\ + INTUSE(_dl_debug_printf) ("\ \nfile=%s; needed by %s (relocation dependency)\n\n", - map->l_name[0] ? map->l_name : _dl_argv[0], - undef_map->l_name[0] - ? undef_map->l_name : _dl_argv[0]); + map->l_name[0] ? map->l_name : _dl_argv[0], + undef_map->l_name[0] + ? undef_map->l_name : _dl_argv[0]); } else /* Whoa, that was bad luck. We have to search again. */ @@ -240,8 +240,8 @@ _dl_lookup_symbol (const char *undef_name, struct link_map *undef_map, && add_dependency (undef_map, current_value.m) < 0) /* Something went wrong. Perhaps the object we tried to reference was just removed. Try finding another definition. */ - return INT(_dl_lookup_symbol) (undef_name, undef_map, ref, - symbol_scope, type_class, 0); + return INTUSE(_dl_lookup_symbol) (undef_name, undef_map, ref, + symbol_scope, type_class, 0); break; } @@ -402,9 +402,9 @@ _dl_lookup_versioned_symbol (const char *undef_name, && add_dependency (undef_map, current_value.m) < 0) /* Something went wrong. Perhaps the object we tried to reference was just removed. Try finding another definition. */ - return INT(_dl_lookup_versioned_symbol) (undef_name, undef_map, - ref, symbol_scope, - version, type_class, 0); + return INTUSE(_dl_lookup_versioned_symbol) (undef_name, undef_map, + ref, symbol_scope, + version, type_class, 0); break; } @@ -600,14 +600,14 @@ _dl_debug_bindings (const char *undef_name, struct link_map *undef_map, if (GL(dl_debug_mask) & DL_DEBUG_BINDINGS) { - INT(_dl_debug_printf) ("binding file %s to %s: %s symbol `%s'", - (reference_name[0] - ? reference_name - : (_dl_argv[0] ?: "<main program>")), - value->m->l_name[0] - ? value->m->l_name : _dl_argv[0], - protected ? "protected" : "normal", - undef_name); + INTUSE(_dl_debug_printf) ("binding file %s to %s: %s symbol `%s'", + (reference_name[0] + ? reference_name + : (_dl_argv[0] ?: "<main program>")), + value->m->l_name[0] + ? value->m->l_name : _dl_argv[0], + protected ? "protected" : "normal", + undef_name); if (version) _dl_debug_printf_c (" [%s]\n", version->name); else |