std::condition_variable::native_handle
Aus cppreference.com
< cpp | thread | condition variable
![]() |
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. |
native_handle_type native_handle(); |
(seit C++11) | |
Ruft das systemeigene Handle des *this .
Original:
Accesses the native handle of *this.
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.
Die Bedeutung und die Art des Ergebnisses dieser Funktion ist die Implementierung definiert. Auf einem POSIX-System, kann dies ein Wert vom Typ pthread_cond_t* sein. Auf einem Windows-System, kann dies ein PCONDITION_VARIABLE sein .
Original:
The meaning and the type of the result of this function is implementation-defined. On a POSIX system, this may be a value of type pthread_cond_t*. On a Windows system, this may be a PCONDITION_VARIABLE.
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.
[Bearbeiten] Parameter
(None)
Original:
(none)
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.
[Bearbeiten] Rückgabewert
Die systemeigene Handle dieser Bedingung variable .
Original:
The native handle of this condition variable.
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.
[Bearbeiten] Siehe auch
liefert den zugrunde liegenden, implementierungsabhängigen Thread-Handle (öffentliche Elementfunktion of std::thread )
|