thread_join

From cppreference.com
< c‎ | thread
Defined in header <threads.h>
int thrd_join( thrd_t thr, int *res );
(since C11)

Blocks the current thread until the thread identified by thr finishes execution.

The result code of the thread is put to the location pointed to by res.

[edit] Parameters

thr - identifier of the thread to join
res - location to put the result code to

[edit] Return value

thrd_success if successful, thrd_error otherwise.

[edit] See also

detaches a thread
(function)
(C11)
terminates the calling thread
(function)