Wednesday, November 30, 2016

C Thread-specific storage Functions

Thread-specific storage Functions:
tss_create(C11) int tss_create( tss_t* tss_key, tss_dtor_t destructor );
tss_get(C11) void *tss_get( tss_t tss_key );
tss_set(C11) int tss_set( tss_t tss_id, void *val );
tss_delete(C11) void tss_delete( tss_t tss_id );

threads.h
Initialization Functions
Condition variable Functions
Mutex Functions
Thread Functions
Thread-specific storage Functions


Related topics:
Library Functions in C   |   Standard Library in C   |   Header Files in C   |   Functions in C   |   Keywords in C   |   Data Types in C   |   Pointers in C

List of topics: C Programming

No comments:

Post a Comment