From 424ca52423ca124e4618e0e7a0dba22ea989ef09 Mon Sep 17 00:00:00 2001 From: rpj Date: Wed, 14 Oct 1998 19:51:06 +0000 Subject: Thu Oct 15 11:53:21 1998 Ross Johnson * global.c (_pthread_tsd_key_table): Fix declaration. * implement.h(_pthread_TSD_keys_TlsIndex): Add missing extern. (_pthread_tsd_mutex): Ditto. * create.c (_pthread_start_call): Fix "keys" array declaration. Add comment. * tsd.c (pthread_setspecific): Fix type declaration and cast. (pthread_getspecific): Ditto. * cleanup.c (_pthread_destructor_run_all): Declare missing loop counter. --- tsd.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tsd.c') diff --git a/tsd.c b/tsd.c index 7b801db..87a2268 100644 --- a/tsd.c +++ b/tsd.c @@ -81,7 +81,7 @@ pthread_key_create(pthread_key_t *key, void (*destructor)(void *)) int pthread_setspecific(pthread_key_t key, void *value) { - void ** keys; + LPVOID keys; int inuse; /* CRITICAL SECTION */ @@ -95,7 +95,7 @@ pthread_setspecific(pthread_key_t key, void *value) if (! inuse) return EINVAL; - keys = (void **) TlsGetValue(_pthread_TSD_keys_TlsIndex); + keys = TlsGetValue(_pthread_TSD_keys_TlsIndex); keys[key] = value; return 0; @@ -104,7 +104,7 @@ pthread_setspecific(pthread_key_t key, void *value) void * pthread_getspecific(pthread_key_t key) { - void ** keys; + LPVOID keys; int inuse; /* CRITICAL SECTION */ @@ -118,7 +118,7 @@ pthread_getspecific(pthread_key_t key) if (! inuse) return EINVAL; - keys = (void **) TlsGetValue(_pthread_TSD_keys_TlsIndex); + keys = TlsGetValue(_pthread_TSD_keys_TlsIndex); return keys[key]; } -- cgit v1.2.3