mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-01 10:06:57 +03:00
* elf/dl-version.c (match_symbol): Add namespace info to debug output.
This commit is contained in:
@ -1,5 +1,7 @@
|
|||||||
2005-03-06 Ulrich Drepper <drepper@redhat.com>
|
2005-03-06 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* elf/dl-version.c (match_symbol): Add namespace info to debug output.
|
||||||
|
|
||||||
* posix/bits/unistd.h (pread): Fix typo in __USE_FILE_OFFSET64 code.
|
* posix/bits/unistd.h (pread): Fix typo in __USE_FILE_OFFSET64 code.
|
||||||
|
|
||||||
* debug/recv_chk.c (__recv_chk): Always fail if request could
|
* debug/recv_chk.c (__recv_chk): Always fail if request could
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* Handle symbol and library versioning.
|
/* Handle symbol and library versioning.
|
||||||
Copyright (C) 1997-2002, 2003, 2004 Free Software Foundation, Inc.
|
Copyright (C) 1997-2002, 2003, 2004, 2005 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
|
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
|
||||||
|
|
||||||
@ -77,7 +77,7 @@ find_needed (const char *name, struct link_map *map)
|
|||||||
|
|
||||||
static int
|
static int
|
||||||
internal_function
|
internal_function
|
||||||
match_symbol (const char *name, ElfW(Word) hash, const char *string,
|
match_symbol (const char *name, Lmid_t ns, ElfW(Word) hash, const char *string,
|
||||||
struct link_map *map, int verbose, int weak)
|
struct link_map *map, int verbose, int weak)
|
||||||
{
|
{
|
||||||
const char *strtab = (const void *) D_PTR (map, l_info[DT_STRTAB]);
|
const char *strtab = (const void *) D_PTR (map, l_info[DT_STRTAB]);
|
||||||
@ -90,9 +90,9 @@ match_symbol (const char *name, ElfW(Word) hash, const char *string,
|
|||||||
/* Display information about what we are doing while debugging. */
|
/* Display information about what we are doing while debugging. */
|
||||||
if (__builtin_expect (GLRO(dl_debug_mask) & DL_DEBUG_VERSIONS, 0))
|
if (__builtin_expect (GLRO(dl_debug_mask) & DL_DEBUG_VERSIONS, 0))
|
||||||
_dl_debug_printf ("\
|
_dl_debug_printf ("\
|
||||||
checking for version `%s' in file %s required by file %s\n",
|
checking for version `%s' in file %s [%lu] required by file %s [%lu]\n",
|
||||||
string, map->l_name[0] ? map->l_name : rtld_progname,
|
string, map->l_name[0] ? map->l_name : rtld_progname,
|
||||||
name);
|
map->l_ns, name, ns);
|
||||||
|
|
||||||
if (__builtin_expect (map->l_info[VERSYMIDX (DT_VERDEF)] == NULL, 0))
|
if (__builtin_expect (map->l_info[VERSYMIDX (DT_VERDEF)] == NULL, 0))
|
||||||
{
|
{
|
||||||
@ -242,7 +242,7 @@ _dl_check_map_versions (struct link_map *map, int verbose, int trace_mode)
|
|||||||
/* Match the symbol. */
|
/* Match the symbol. */
|
||||||
result |= match_symbol ((*map->l_name
|
result |= match_symbol ((*map->l_name
|
||||||
? map->l_name : rtld_progname),
|
? map->l_name : rtld_progname),
|
||||||
aux->vna_hash,
|
map->l_ns, aux->vna_hash,
|
||||||
strtab + aux->vna_name,
|
strtab + aux->vna_name,
|
||||||
needed->l_real, verbose,
|
needed->l_real, verbose,
|
||||||
aux->vna_flags & VER_FLG_WEAK);
|
aux->vna_flags & VER_FLG_WEAK);
|
||||||
|
Reference in New Issue
Block a user