tss_get

Header: <threads.h>

Returns the value held in thread-specific storage for the current thread identified by tss_key. Different threads may get different values identified by the same key.

# Declarations

void *tss_get( tss_t tss_key );

(since C11)

# Parameters

# Return value

The value on success, NULL on failure.

# Notes

The POSIX equivalent for this function is pthread_getspecific.

# Example

This section is incompleteReason: no example

# See also