Create a thread-specific storage key
#include <threads.h> typedef void (*tss_dtor_t)(void*); int tss_create( tss_t *key, tss_dtor_t dtor );
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
The tss_create() function creates a thread-specific storage key that's available to all threads in the process and binds an optional destructor function dtor to the area. If the function completes successfully, the new storage is returned in key.
When you create a key, the value NULL is bound with the key in all active threads. When you create a thread, the value NULL is bound to all defined keys in the new thread.
You can optionally associate a destructor function with each key value. At thread exit, if the key has a non-NULL destructor pointer, and the thread has a non-NULL value bound to the key, the destructor function is called with the bound value as its only argument. The order of destructor calls is undefined if more than one destructor exists for a thread when it exits.
If, after all destructor functions have been called for a thread, there are still non-NULL bound values, the destructor function is called repeatedly a maximum of TSS_DTOR_ITERATIONS times for each non-NULL bound value.
Before each destructor is called, the thread's value for the corresponding key is set to NULL. Calling:
tss_set( key, NULL );
in a key destructor isn't required; this lets you use the same destructor for several keys.