mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-26 23:10:06 +00:00
50a78baa8e
This follows bd60ce8652
('nptl: Move pthread_atfork to libc_nonshared.a')
with the same rationale: there is no non-libpthread equivalent to be used
for making linking against libpthread optional.
libpthread_nonshared.a is unused after this, so remove it from the
build.
There is no ABI impact because pthread_atfork was implemented using
__register_atfork in libc even before this change.
pthread_atfork has to be a weak alias because pthread_* names are not
reserved in libc.
11 lines
324 B
Plaintext
11 lines
324 B
Plaintext
# Makeconfig fragment for Hurd libpthread add-on.
|
|
# This gets included at the end of the main glibc Makeconfig.
|
|
|
|
have-thread-library = yes
|
|
|
|
shared-thread-library = $(common-objpfx)htl/libpthread.so
|
|
static-thread-library = $(common-objpfx)htl/libpthread.a
|
|
bounded-thread-library = $(static-thread-library)
|
|
|
|
rpath-dirs += htl
|