diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-09-25 17:11:06 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-09-25 17:11:06 +0000 |
commit | d790bc347dce29327b69260b5323d87d4fb7e936 (patch) | |
tree | 0af0325ca401d16552f9dbf6bd13f0d73bf57825 /linuxthreads/manager.c | |
parent | 079c00e64c9f6aafcd816790d49cb144d00a6a18 (diff) | |
download | glibc-d790bc347dce29327b69260b5323d87d4fb7e936.tar.gz glibc-d790bc347dce29327b69260b5323d87d4fb7e936.tar.xz glibc-d790bc347dce29327b69260b5323d87d4fb7e936.zip |
Update.
* manager.c (__linuxthreads_pthread_threads_max): New variable. * specific.c (__linuxthreads_pthread_keys_max): New variable. 1999-09-23 Ulrich Drepper <drepper@cygnus.com> * specific.c: Move definitions of struct pthread_key_struct and destr_function to ... * internals.h: ...here.
Diffstat (limited to 'linuxthreads/manager.c')
-rw-r--r-- | linuxthreads/manager.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/linuxthreads/manager.c b/linuxthreads/manager.c index f1a5899404..b481fc890c 100644 --- a/linuxthreads/manager.c +++ b/linuxthreads/manager.c @@ -38,6 +38,9 @@ struct pthread_handle_struct __pthread_handles[PTHREAD_THREADS_MAX] = { { LOCK_INITIALIZER, &__pthread_initial_thread, 0}, { LOCK_INITIALIZER, &__pthread_manager_thread, 0}, /* All NULLs */ }; +/* For debugging purposes put the maximum number of threads in a variable. */ +const int __linuxthreads_pthread_threads_max = PTHREAD_THREADS_MAX; + /* Indicate whether at least one thread has a user-defined stack (if 1), or if all threads have stacks supplied by LinuxThreads (if 0). */ int __pthread_nonstandard_stacks = 0; |