tss_delete Subroutine
Purpose
This subroutine deletes a thread-specific storage pointer.
Library
Standard C Library (libc.a)
Syntax
#include <threads.h>
void tss_delete(tss_t key);
Description
The tss_delete subroutine releases any resources that are used by the thread-specific storage pointer that is identified by the key parameter.
Parameters
Item | Description |
---|---|
key | Holds an identifier for a thread-specific storage pointer. |
Return Values
The tss_delete subroutine returns no value.
Files
Item | Description |
---|---|
threads.h | Standard macros, data types, and subroutines are defined by the threads.h file. |