mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
ld.so: Remove __libc_memalign
It is no longer needed since commit 6c444ad6e9
(elf: Do not use memalign for TCB/TLS blocks allocation [BZ #17730]).
Applications do not link against ld.so and will use the definition in
libc.so, so there is no ABI impact.
This commit is contained in:
@ -1,5 +1,4 @@
|
||||
GLIBC_2.4 GLIBC_2.4 A
|
||||
GLIBC_2.4 __libc_memalign F
|
||||
GLIBC_2.4 __libc_stack_end D 0x4
|
||||
GLIBC_2.4 __stack_chk_guard D 0x4
|
||||
GLIBC_2.4 __tls_get_addr F
|
||||
|
@ -7,11 +7,10 @@ libc.so: realloc
|
||||
libm.so: matherr
|
||||
libpthread.so: __errno_location
|
||||
libpthread.so: raise
|
||||
# The dynamic loader needs __tls_get_addr for TLS, and uses __libc_memalign
|
||||
# internally to allocate aligned TLS storage. The other malloc family of
|
||||
# functions are expected to allow user symbol interposition.
|
||||
# The dynamic loader needs __tls_get_addr for TLS.
|
||||
ld.so: __tls_get_addr
|
||||
ld.so: __libc_memalign
|
||||
# The main malloc is interposed into the dynamic linker, for
|
||||
# allocations after the initial link (when dlopen is used).
|
||||
ld.so: malloc
|
||||
ld.so: calloc
|
||||
ld.so: realloc
|
||||
|
Reference in New Issue
Block a user