summaryrefslogtreecommitdiff
path: root/tsd.c
diff options
context:
space:
mode:
Diffstat (limited to 'tsd.c')
-rw-r--r--tsd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tsd.c b/tsd.c
index 757ea9f..6ea2eb0 100644
--- a/tsd.c
+++ b/tsd.c
@@ -189,7 +189,7 @@ pthread_key_delete (pthread_key_t key)
pthread_mutex_unlock (&(assoc->lock));
- tkAssocDestroy (assoc);
+ _pthread_tkAssocDestroy (assoc);
assoc = next;
}
@@ -304,7 +304,7 @@ pthread_setspecific (pthread_key_t key, const void *value)
* create an association if not found
*/
result = (assoc == NULL)
- ? tkAssocCreate (&assoc, self, key)
+ ? _pthread_tkAssocCreate (&assoc, self, key)
: 0;
}
else