Thread-Specific Data [POSIX Section 17]

Functions Implemented

int pthread_key_create(pthread_key_t *key,
	               void (*destructor)(void *)); 
int pthread_setspecific(pthread_key_t key, const void *pointer); 
void *pthread_getspecific(pthread_key_t key); 
int pthread_key_delete(pthread_key_t key);

Functions Omitted

<none>

Notes