tss_delete()

Delete thread-specific storage

Synopsis:

#include <threads.h>

void tss_delete(tss_t key );

Arguments:

key
The key, which you created by calling tss_create(), that you want to delete.

Library:

libc

Use the -l c option to qcc to link against this library. This library is usually included automatically.

Description:

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.

Classification:

C11

Safety:  
Cancellation point No
Interrupt handler No
Signal handler Yes
Thread Yes