std::condition_variable:: native_handle
From cppreference.net
<
cpp
|
thread
|
condition variable
C++
Concurrency support library
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
std::condition_variable
| Member functions | ||||
| Notification | ||||
| Waiting | ||||
| Native handle | ||||
|
condition_variable::native handle
|
|
native_handle_type native_handle
(
)
;
|
(C++11以降) | |
* this のネイティブハンドルにアクセスします。
この関数の結果の意味と型は実装定義です。POSIXシステムでは、これは pthread_cond_t * 型の値である可能性があります。Windowsシステムでは、これは PCONDITION_VARIABLE である可能性があります。
パラメータ
(なし)
戻り値
この条件変数のネイティブハンドル。
関連項目
|
基盤となる実装定義のスレッドハンドルを返す
(
std::thread
の公開メンバ関数)
|
|
|
基盤となる実装定義のスレッドハンドルを返す
(
std::jthread
の公開メンバ関数)
|