diff options
author | Roland McGrath <roland@gnu.org> | 2002-12-03 02:50:58 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-12-03 02:50:58 +0000 |
commit | fa9a4ff0ba0b66f544bcd69e6bd0929f0a7fc7ff (patch) | |
tree | 413449448f0ca03a2a7601f58c77ce01c8927199 /nptl/pthread_key_create.c | |
parent | 2d14868942150183adaf0bc80b8ed6b70b65261e (diff) | |
download | glibc-fa9a4ff0ba0b66f544bcd69e6bd0929f0a7fc7ff.tar.gz glibc-fa9a4ff0ba0b66f544bcd69e6bd0929f0a7fc7ff.tar.xz glibc-fa9a4ff0ba0b66f544bcd69e6bd0929f0a7fc7ff.zip |
* sysdeps/hppa/fpu/fesetround.c (fesetround): Use ~FE_DOWNWARD so both
bits of RM are cleared.
Diffstat (limited to 'nptl/pthread_key_create.c')
-rw-r--r-- | nptl/pthread_key_create.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/nptl/pthread_key_create.c b/nptl/pthread_key_create.c index 7a073f2d80..3a49c094d6 100644 --- a/nptl/pthread_key_create.c +++ b/nptl/pthread_key_create.c @@ -21,13 +21,13 @@ #include "pthreadP.h" -/* Internal mutex for __pthread_kyes table handling. */ +/* Internal mutex for __pthread_keys table handling. */ lll_lock_t __pthread_keys_lock = LLL_LOCK_INITIALIZER; /* 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; +const int __pthread_pthread_keys_max = PTHREAD_KEYS_MAX; +const int __pthread_pthread_key_2ndlevel_size = PTHREAD_KEY_2NDLEVEL_SIZE; int |