diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-05-11 11:08:00 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-05-11 11:10:03 +0200 |
commit | 249bd833a08e2689e28ff9a094730f0b048a8442 (patch) | |
tree | 2106800f8ef1cfc6bfb73e7391400b7cb2b06ae2 /nptl/Makefile | |
parent | d2af73a348c4a230792d190c774a431fe5c31515 (diff) | |
download | glibc-249bd833a08e2689e28ff9a094730f0b048a8442.tar glibc-249bd833a08e2689e28ff9a094730f0b048a8442.tar.gz glibc-249bd833a08e2689e28ff9a094730f0b048a8442.tar.bz2 glibc-249bd833a08e2689e28ff9a094730f0b048a8442.zip |
nptl: Move pthread_setattr_default_np into libc
The symbol was moved using scripts/move-symbol-to-libc.py.
The export of __default_pthread_attr_freeres is temporary. There
is a minor regression in freeres coverage because in the dynamic case,
__default_pthread_attr_freeres is no longer called if libpthread is
not linked in.
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'nptl/Makefile')
-rw-r--r-- | nptl/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl/Makefile b/nptl/Makefile index 7b3c56f32c..2ef09fba94 100644 --- a/nptl/Makefile +++ b/nptl/Makefile @@ -145,6 +145,7 @@ routines = \ pthread_rwlockattr_setkind_np \ pthread_rwlockattr_setpshared \ pthread_self \ + pthread_setattr_default_np \ pthread_setcancelstate \ pthread_setcanceltype \ pthread_setschedparam \ @@ -203,7 +204,6 @@ libpthread-routines = \ pthread_join \ pthread_join_common \ pthread_setaffinity \ - pthread_setattr_default_np \ pthread_setconcurrency \ pthread_setname \ pthread_setschedprio \ |