diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-03-15 05:20:35 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-03-15 05:20:35 +0000 |
commit | 9360906d42dd15e24f27a35b77f16df516f3c05d (patch) | |
tree | 732ba9c35fb5b094742e8423a12670a902d58081 /sysdeps/generic/ldsodefs.h | |
parent | 5c82e15e8646cd7d229bcd8287d01875e12df0b3 (diff) | |
download | glibc-9360906d42dd15e24f27a35b77f16df516f3c05d.tar.gz glibc-9360906d42dd15e24f27a35b77f16df516f3c05d.tar.xz glibc-9360906d42dd15e24f27a35b77f16df516f3c05d.zip |
Update.
* elf/rtld.c: Declare _environ as hidden. * sysdeps/generic/dl-environ.c: Likewise. * sysdeps/generic/dl-sysdep.c: Likewise. * sysdeps/generic/ldsodefs.h: Declare _dl_debug_state_internal and _dl_mcount_internal as hidden. * elf/Makefile (rtld-routines): Add dl-sbrk and dl-brk. * sysdeps/generic/dl-brk.c: New file. * sysdeps/generic/dl-sbrk.c: New file. * sysdeps/unix/sysv/linux/i386/dl-brk.c: New file. * sysdeps/unix/sysv/linux/i386/dl-sbrk.c: New file.
Diffstat (limited to 'sysdeps/generic/ldsodefs.h')
-rw-r--r-- | sysdeps/generic/ldsodefs.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sysdeps/generic/ldsodefs.h b/sysdeps/generic/ldsodefs.h index d2dd3e60ec..a68ae5e06e 100644 --- a/sysdeps/generic/ldsodefs.h +++ b/sysdeps/generic/ldsodefs.h @@ -634,7 +634,7 @@ extern void _dl_fini (void) internal_function; says what change is taking place. This function's address is the value of the `r_brk' member. */ extern void _dl_debug_state (void); -extern void _dl_debug_state_internal (void); +extern void _dl_debug_state_internal (void) attribute_hidden; /* Initialize `struct r_debug' if it has not already been done. The argument is the run-time load address of the dynamic linker, to be put @@ -655,7 +655,8 @@ extern void _dl_start_profile_internal (struct link_map *map, /* The actual functions used to keep book on the calls. */ extern void _dl_mcount (ElfW(Addr) frompc, ElfW(Addr) selfpc); -extern void _dl_mcount_internal (ElfW(Addr) frompc, ElfW(Addr) selfpc); +extern void _dl_mcount_internal (ElfW(Addr) frompc, ElfW(Addr) selfpc) + attribute_hidden; /* This function is simply a wrapper around the _dl_mcount function which does not require a FROMPC parameter since this is the |