diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-04-21 19:49:50 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-04-21 19:49:50 +0200 |
commit | c62cef023cdcd8349369ef4e0d08290e495659be (patch) | |
tree | 5039f207754a42ced241ef75d77c6c3da689f7da /sysdeps/pthread | |
parent | 2cfef0b042561ec2a61cab0a1f3a85a28780985d (diff) | |
download | glibc-c62cef023cdcd8349369ef4e0d08290e495659be.zip glibc-c62cef023cdcd8349369ef4e0d08290e495659be.tar.gz glibc-c62cef023cdcd8349369ef4e0d08290e495659be.tar.bz2 |
nptl: Move pthread_exit into libc
The pthread_exit symbol was moved using
scripts/move-symbol-to-libc.py. No new symbol version is needed
because there was a forwarder.
The new tests nptl/tst-pthread_exit-nothreads and
nptl/tst-pthread_exit-nothreads-static exercise the scenario
that pthread_exit is called without libpthread having been linked in.
This is not possible for the generic code, so these tests do not
live in sysdeps/pthread for now.
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'sysdeps/pthread')
-rw-r--r-- | sysdeps/pthread/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/pthread/Makefile b/sysdeps/pthread/Makefile index 53b65ef..ed15c1e 100644 --- a/sysdeps/pthread/Makefile +++ b/sysdeps/pthread/Makefile @@ -111,7 +111,7 @@ tests += tst-cnd-basic tst-mtx-trylock tst-cnd-broadcast \ # Files which must not be linked with libpthread. -tests-nolibpthread = tst-unload +tests-nolibpthread += tst-unload # GCC-4.9 compiles 'sprintf(NULL, ...)' into UD2 on x86_64 without -fno-builtin CFLAGS-tst-cleanup2.c += -fno-builtin |