diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-09-24 21:13:55 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-09-24 21:13:55 +0000 |
commit | 977169541668f2287c5f8e239e5743eb9cefcb63 (patch) | |
tree | babcc4b260b9fda3a335f6eaeac204b1495ce3b8 /elf/Versions | |
parent | 0f124303c8bebc3258d2d22bdc03271e85b9ea42 (diff) | |
download | glibc-977169541668f2287c5f8e239e5743eb9cefcb63.tar glibc-977169541668f2287c5f8e239e5743eb9cefcb63.tar.gz glibc-977169541668f2287c5f8e239e5743eb9cefcb63.tar.bz2 glibc-977169541668f2287c5f8e239e5743eb9cefcb63.zip |
Update.
2003-09-24 Ulrich Drepper <drepper@redhat.com>
* sysdeps/ia64/dl-machine.h (RTLD_START): Remove setting of
__libc_stack_end. Patch by David Mosberger.
2003-09-24 Jakub Jelinek <jakub@redhat.com>
* elf/Versions (ld): Export __libc_stack_end@GLIBC_2.1 instead of
__libc_stack_end@GLIBC_PRIVATE.
* sysdeps/generic/dl-sysdep.c (DL_STACK_END): Define if not defined.
(_dl_sysdep_start): Set __libc_stack_end here.
* sysdeps/alpha/dl-machine.h (RTLD_START): Remove setting of
__libc_stack_end.
* sysdeps/arm/dl-machine.h (RTLD_START): Likewise.
* sysdeps/cris/dl-machine.h (RTLD_START): Likewise.
* sysdeps/i386/dl-machine.h (RTLD_START): Likewise.
* sysdeps/m68k/dl-machine.h (RTLD_START): Likewise.
* sysdeps/s390/s390-32/dl-machine.h (RTLD_START): Likewise.
* sysdeps/s390/s390-64/dl-machine.h (RTLD_START): Likewise.
* sysdeps/sh/dl-machine.h (RTLD_START): Likewise.
* sysdeps/x86_64/dl-machine.h (RTLD_START): Likewise.
* sysdeps/ia64/dl-machine.h (DL_STACK_END): Define.
* sysdeps/sparc/sparc32/dl-machine.h (DL_STACK_END): Define.
(RTLD_START): Remove setting of __libc_stack_end.
* sysdeps/sparc/sparc64/dl-machine.h (DL_STACK_END): Define.
(RTLD_START): Remove setting of __libc_stack_end.
2003-09-24 Ulrich Drepper <drepper@redhat.com>
* sysdeps/unix/sysv/linux/sys/sysmacros.h: Add gnu_dev_ prefix to
function definitions. Adjust macro expansions accordingly.
* sysdeps/unix/sysv/linux/Versions: Add gnu_dev_ prefix to major,
minor, makedev name.
* sysdeps/unix/sysv/linux/makedev.c: Likewise.
2003-09-24 Jakub Jelinek <jakub@redhat.com>
* sysdeps/unix/sysv/linux/sys/sysmacros.h (major, minor, makedev):
Add __THROW.
Diffstat (limited to 'elf/Versions')
-rw-r--r-- | elf/Versions | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/elf/Versions b/elf/Versions index d3ed536d0f..21f8cdbd6f 100644 --- a/elf/Versions +++ b/elf/Versions @@ -36,6 +36,8 @@ ld { GLIBC_2.1 { # functions used in other libraries _dl_mcount; + # historically used by Garbage Collectors + __libc_stack_end; } GLIBC_2.3 { # runtime interface to TLS @@ -43,7 +45,7 @@ ld { } GLIBC_PRIVATE { # Those are in the dynamic linker, but used by libc.so. - __libc_enable_secure; __libc_stack_end; + __libc_enable_secure; _dl_argv; _dl_catch_error; _dl_check_map_versions; _dl_debug_printf; _dl_debug_state; _dl_dst_count; _dl_dst_substitute; _dl_init; _dl_lookup_symbol; _dl_lookup_symbol_skip; |