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 | 43fe356d18e12b5826dfee4c0b57b5c75c3a9a72 (patch) | |
tree | 70aff7217ebdc746c77f3f5b2a18a3e7ae051579 /nptl/pthread_create.c | |
parent | 130fca173f323a24b41873b6656ab77c7cff86e1 (diff) | |
download | glibc-43fe356d18e12b5826dfee4c0b57b5c75c3a9a72.zip glibc-43fe356d18e12b5826dfee4c0b57b5c75c3a9a72.tar.gz glibc-43fe356d18e12b5826dfee4c0b57b5c75c3a9a72.tar.bz2 |
nptl: Move internal __nptl_nthreads variable into libc
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'nptl/pthread_create.c')
-rw-r--r-- | nptl/pthread_create.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/nptl/pthread_create.c b/nptl/pthread_create.c index f13d8e4..c1c5b24 100644 --- a/nptl/pthread_create.c +++ b/nptl/pthread_create.c @@ -59,10 +59,6 @@ static struct rtld_global *__nptl_rtld_global __attribute_used__ = &_rtld_global; #endif -/* Number of threads running. */ -unsigned int __nptl_nthreads = 1; - - /* Code to allocate and deallocate a stack. */ #include "allocatestack.c" |