thread_detach
Aus cppreference.com
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
<metanoindex/>
<tbody> </tbody>| definiert in Header <threads.h>
|
||
int thrd_detach( thrd_t thr ); |
(Seit C11) | |
Trennt den Faden durch
thr aus der aktuellen Umgebung identifiziert. Die von der Thread gehalten wird automatisch, sobald der Thread beendet befreit werden .Original:
Detaches the thread identified by
thr from the current environment. The resources held by the thread will be freed automatically once the thread exits.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Parameter
| thr | - | Kennung des Fadens zu lösen
Original: identifier of the thread to detach The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Rückgabewert
thrd_success wenn erfolgreich, thrd_error sonst .Original:
thrd_success if successful, thrd_error otherwise.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Siehe auch
(C11) |
blockiert, bis ein Thread beendet wird Original: blocks until a thread terminates The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Funktion) |