Returns the value associated with the specified key.
#include <thread.h>
int thr_getspecific (
thread_key_t key,
void **value);
(IN) Specifies the key for which the value is to be returned.
(OUT) Points to a location in which to return the value of the specified key. The default initial value associated with each thread for an allocated key is NULL.
If successful, returns 0; otherwise, returns a nonzero error code:
The thr_getspecific function returns the value associated with the specified key for the calling thread.