diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-05-11 20:22:33 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-05-11 20:33:14 +0200 |
commit | fec776b827755a0aac17a0745bc38c2329aad5ca (patch) | |
tree | 6882496f4ff7ad8019be07746936c2cdf34f654c /nptl/Makefile | |
parent | d7c51fe4f0efd7f3ca505b5d5b3a02d5d72d9bbd (diff) | |
download | glibc-fec776b827755a0aac17a0745bc38c2329aad5ca.tar.gz glibc-fec776b827755a0aac17a0745bc38c2329aad5ca.tar.xz glibc-fec776b827755a0aac17a0745bc38c2329aad5ca.zip |
nptl: Move pthread_getconcurrency, pthread_setconcurrency into libc
The symbols were moved using scripts/move-symbol-to-libc.py, in one commit due to their dependency on the internal __concurrency_level variable. Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'nptl/Makefile')
-rw-r--r-- | nptl/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nptl/Makefile b/nptl/Makefile index 5ce295c96f..37a762d530 100644 --- a/nptl/Makefile +++ b/nptl/Makefile @@ -113,6 +113,7 @@ routines = \ pthread_exit \ pthread_getaffinity \ pthread_getattr_np \ + pthread_getconcurrency \ pthread_getschedparam \ pthread_getspecific \ pthread_join \ @@ -167,6 +168,7 @@ routines = \ pthread_setattr_default_np \ pthread_setcancelstate \ pthread_setcanceltype \ + pthread_setconcurrency \ pthread_setschedparam \ pthread_setspecific \ pthread_sigmask \ @@ -204,11 +206,9 @@ libpthread-routines = \ pt-interp \ pthread_create \ pthread_getattr_default_np \ - pthread_getconcurrency \ pthread_getcpuclockid \ pthread_getname \ pthread_setaffinity \ - pthread_setconcurrency \ pthread_setname \ pthread_setschedprio \ pthread_sigqueue \ |