summaryrefslogtreecommitdiff
path: root/pthread_key_create.c
diff options
context:
space:
mode:
authorrpj <rpj>2007-11-22 14:14:57 +0000
committerrpj <rpj>2007-11-22 14:14:57 +0000
commit25ffdcfc06e8a84497fd7e80aa4cef111d7dad2d (patch)
treee1a03422251b1556d6770458edf71a5475f7cf36 /pthread_key_create.c
parentb1dc8324d03053ffb427424c8de046863757d8ec (diff)
''
Diffstat (limited to 'pthread_key_create.c')
-rw-r--r--pthread_key_create.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pthread_key_create.c b/pthread_key_create.c
index 5e278c2..41f4854 100644
--- a/pthread_key_create.c
+++ b/pthread_key_create.c
@@ -93,7 +93,7 @@ pthread_key_create (pthread_key_t * key, void (*destructor) (void *))
{
/*
* Have to manage associations between thread and key;
- * Therefore, need a lock that allows multiple threads
+ * Therefore, need a lock that allows competing threads
* to gain exclusive access to the key->threads list.
*
* The mutex will only be created when it is first locked.