diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-09-25 17:52:31 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-09-25 17:52:31 +0000 |
commit | 6e42b0f1ac30da9806b6917378bf19335328096d (patch) | |
tree | 902ba1eb4b353944c0069d6a23d40c9b691ff309 | |
parent | d790bc347dce29327b69260b5323d87d4fb7e936 (diff) | |
download | glibc-6e42b0f1ac30da9806b6917378bf19335328096d.zip glibc-6e42b0f1ac30da9806b6917378bf19335328096d.tar.gz glibc-6e42b0f1ac30da9806b6917378bf19335328096d.tar.bz2 |
Update.
(__linuxthreads_pthread_key_2ndlevel_size): New variable.
-rw-r--r-- | linuxthreads/ChangeLog | 1 | ||||
-rw-r--r-- | linuxthreads/specific.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/linuxthreads/ChangeLog b/linuxthreads/ChangeLog index fcb5c81..d83f63c 100644 --- a/linuxthreads/ChangeLog +++ b/linuxthreads/ChangeLog @@ -2,6 +2,7 @@ * manager.c (__linuxthreads_pthread_threads_max): New variable. * specific.c (__linuxthreads_pthread_keys_max): New variable. + (__linuxthreads_pthread_key_2ndlevel_size): New variable. * condvar.c (pthread_cond_timedwait_relative): Never return with EINTR. Patch by Andreas Schwab. diff --git a/linuxthreads/specific.c b/linuxthreads/specific.c index 83ea283..0c302d4 100644 --- a/linuxthreads/specific.c +++ b/linuxthreads/specific.c @@ -27,6 +27,7 @@ static struct pthread_key_struct pthread_keys[PTHREAD_KEYS_MAX] = /* For debugging purposes put the maximum number of keys in a variable. */ const int __linuxthreads_pthread_keys_max = PTHREAD_KEYS_MAX; +const int __linuxthreads_pthread_key_2ndlevel_size = PTHREAD_KEY_2NDLEVEL_SIZE; /* Mutex to protect access to pthread_keys */ |