Defined in header <threads.h> void tss_delete( tss_t tss_id ); (since C11)
Destroys the thread-specific storage identified by tss_id.
The destructor, if one was registered by tss_create, is not called (they are only called at thread exit, either by thrd_exit or by returning from the thread function), it is the responsibility of the programmer to ensure that every thread that is aware of tss_id performed all necessary cleanup, before the call to tss_delete is made.
If tss_de