mirror of git://sourceware.org/git/glibc.git
Wed Jun 5 00:01:19 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* elf/dl-lookup.c (_dl_lookup_symbol): Fix typos in last change. Comment out ref to nonexistent _dl_close.
This commit is contained in:
parent
58e071515a
commit
1c384dcd5f
|
|
@ -1,3 +1,8 @@
|
||||||
|
Wed Jun 5 00:01:19 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
|
||||||
|
|
||||||
|
* elf/dl-lookup.c (_dl_lookup_symbol): Fix typos in last change.
|
||||||
|
Comment out ref to nonexistent _dl_close.
|
||||||
|
|
||||||
Tue Jun 4 21:01:20 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
|
Tue Jun 4 21:01:20 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
|
||||||
|
|
||||||
* math/Makefile (libm-support, libm-calls): New variables.
|
* math/Makefile (libm-support, libm-calls): New variables.
|
||||||
|
|
|
||||||
|
|
@ -125,14 +125,14 @@ _dl_lookup_symbol (const char *undef_name, const Elf32_Sym **ref,
|
||||||
static struct magic magic[] =
|
static struct magic magic[] =
|
||||||
{
|
{
|
||||||
{ 0xd6a2a5e, "_GNU_libc_dl_open", (Elf32_Addr) &_dl_open },
|
{ 0xd6a2a5e, "_GNU_libc_dl_open", (Elf32_Addr) &_dl_open },
|
||||||
{ 0x69ef845, "_GNU_libc_dl_close", (Elf32_Addr) &_dl_close },
|
/* { 0x69ef845, "_GNU_libc_dl_close", (Elf32_Addr) &_dl_close },*/
|
||||||
{ 0xae4d63c, "_GNU_libc_dl_symbol", (Elf32_Addr) &_dl_symbol_value },
|
{ 0xae4d63c, "_GNU_libc_dl_symbol", (Elf32_Addr) &_dl_symbol_value },
|
||||||
{ 0, NULL, 0 }
|
{ 0, NULL, 0 }
|
||||||
};
|
};
|
||||||
struct magic *m;
|
struct magic *m;
|
||||||
|
|
||||||
for (m = magic; m->hash; ++m)
|
for (m = magic; m->hash; ++m)
|
||||||
if (hash == m->hash && !strcmp (name, m->name))
|
if (hash == m->hash && !strcmp (undef_name, m->name))
|
||||||
return m->value;
|
return m->value;
|
||||||
|
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue