Wednesday, November 30, 2016

C Thread Functions

Thread Functions:
thrd_create(C11) int thrd_create( thrd_t *thr, thrd_start_t func, void *arg );
thrd_equal(C11) int thrd_equal( thrd_t lhs, thrd_t rhs );
thrd_current(C11) thrd_t thrd_current(void);
thrd_sleep(C11) int thrd_sleep( const struct timespec* time_point, struct timespec* remaining );
thrd_yield(C11) void thrd_yield(void);
thrd_exit(C11) void thrd_exit( int res );
thrd_detach(C11) int thrd_detach( thrd_t thr );
thrd_join(C11) int thrd_join( thrd_t thr, int *res );

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