Delete thread-specific storage
#include <threads.h> void tss_delete(tss_t key );
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
The tss_delete() function deletes the thread-specific data key key that you previously created with tss_create(). The destructor function bound to key isn't called by this function, and won't be called at thread termination. You can call this function from a thread-specific data destructor function.
If you need to release any data bound to the key in any threads, do so before deleting the key.
Safety: | |
---|---|
Cancellation point | No |
Interrupt handler | No |
Signal handler | Yes |
Thread | Yes |