Set a thread-specific data value
#include <threads.h> int tss_set( tss_t key, void* value );
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
The tss_set() function binds the thread-specific data value value with the thread-specific data key key.
You can call this function from within a thread-specific data destructor function.
Calling tss_set() with a non-NULL value may result in lost storage or infinite loops unless value was returned by tss_create().