summaryrefslogtreecommitdiff
path: root/tsd.c
diff options
context:
space:
mode:
authorbje <bje>1998-07-25 22:46:32 +0000
committerbje <bje>1998-07-25 22:46:32 +0000
commit318cf7a90bc90a333061e721cf199ab341babe12 (patch)
tree95e030449f98b1908dd769da0e47bacdd82475a0 /tsd.c
parent0dd870caa461a8d91f7ec2365e1d542bc0615fb8 (diff)
1998-07-26 Ben Elliston <bje@cygnus.com>
* tsd.c (pthread_getspecific): Update comments.
Diffstat (limited to 'tsd.c')
-rw-r--r--tsd.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/tsd.c b/tsd.c
index e17caf2..611ed5f 100644
--- a/tsd.c
+++ b/tsd.c
@@ -42,9 +42,6 @@ pthread_setspecific(pthread_key_t key, void *value)
void *
pthread_getspecific(pthread_key_t key)
{
- /* FIXME: this code assumes that TlsGetValue returns NULL if the key
- is not present in the TLS structure. Confirm. */
-
return TlsGetValue(key);
}
@@ -53,4 +50,3 @@ pthread_key_delete(pthread_key_t key)
{
return (TlsFree(key) == FALSE) ? EINVAL : 0;
}
-