summaryrefslogtreecommitdiff
path: root/pthread_setspecific.c
diff options
context:
space:
mode:
authorrpj <rpj>2003-05-15 06:15:57 +0000
committerrpj <rpj>2003-05-15 06:15:57 +0000
commit4b79461c03e0dd4656c1ad4fdca4344fb2cd1b19 (patch)
tree79f50ddd95908fd2adbb5b4954d6dbcd8b565c2e /pthread_setspecific.c
parent47c236236b027b25fb91feedcd0015d290eb8db2 (diff)
Fixed memory leaks caused by destructors calling pthreads routines at thread exit.
Diffstat (limited to 'pthread_setspecific.c')
-rw-r--r--pthread_setspecific.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pthread_setspecific.c b/pthread_setspecific.c
index 37ff975..fbf4d7e 100644
--- a/pthread_setspecific.c
+++ b/pthread_setspecific.c
@@ -84,7 +84,7 @@ pthread_setspecific (pthread_key_t key, const void *value)
else
{
/*
- * Resolve catch-22 of registering thread with threadSelf
+ * Resolve catch-22 of registering thread with selfThread
* key
*/
self = (pthread_t) pthread_getspecific (ptw32_selfThreadKey);