From: Ulrich Drepper Date: Sat, 25 Sep 1999 17:52:31 +0000 (+0000) Subject: Update. X-Git-Tag: cvs/pre-glibc-2_1_3~343 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6e42b0f1ac30da9806b6917378bf19335328096d;p=thirdparty%2Fglibc.git Update. (__linuxthreads_pthread_key_2ndlevel_size): New variable. --- diff --git a/linuxthreads/ChangeLog b/linuxthreads/ChangeLog index fcb5c81c144..d83f63c2426 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 83ea283ba57..0c302d4b419 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 */