diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-01-23 08:25:15 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-01-23 08:25:15 +0000 |
commit | 98e763d441c2896f407813bf36a5ae1c3c4a0369 (patch) | |
tree | 7faad93bc0aeba9bb107ab59d1c6c8e3cd5ae79c /libpthread/linuxthreads/specific.c | |
parent | f6a7ce04b503695f1a4aaf48fc81b227d0daf052 (diff) |
Just be a bit less different from latest glibc version in comments
and in the files where variables live.
Diffstat (limited to 'libpthread/linuxthreads/specific.c')
-rw-r--r-- | libpthread/linuxthreads/specific.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libpthread/linuxthreads/specific.c b/libpthread/linuxthreads/specific.c index 120bb13df..3df0e4720 100644 --- a/libpthread/linuxthreads/specific.c +++ b/libpthread/linuxthreads/specific.c @@ -27,8 +27,9 @@ static struct pthread_key_struct pthread_keys[PTHREAD_KEYS_MAX] = { { 0, NULL } }; -/* Put the maximum number of keys in a variable to make gdb happy. */ +/* 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 */ |