©
This document usesPHP Chinese website manualRelease
|
Defined in header |
|
|
|---|---|---|
|
int thrd_join( thrd_t thr, int *res ); |
|
(since C11) |
Blocks the current thread until the thread identified bythrfinishes execution.
Ifresis not a null pointer, the result code of the thread is put to the location pointed to byres.
The termination of the threadsynchronizes-withthe completion of this function.
The behavior is undefined if the thread was previously detached or joined by another thread.
|
thr |
- |
identifier of the thread to join |
|---|---|---|
|
res |
- |
location to put the result code to |
thrd_successif successful,thrd_errorotherwise.
C11 standard (ISO/IEC 9899:2011):
7.26.5.6 The thrd_join function (p: 384-385)
|
thrd_detach (C11) |
detaches a thread (function) |
|---|---|
|
thrd_exit (C11) |
terminates the calling thread (function) |
| C++ documentation for join |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.