mtx_plain, mtx_recursive, mtx_timed
提供: cppreference.com
ヘッダ <threads.h> で定義
|
||
enum { mtx_plain = /* unspecified */, |
(C11以上) | |
mtx_init に渡されたとき、作成するミューテックスの種類を表します。
定数 | 説明 |
mtx_plain
|
プレーンなミューテックス |
mtx_recursive
|
再帰ミューテックス |
mtx_timed
|
タイムアウト付きミューテックス |
[編集] 参考文献
- C11 standard (ISO/IEC 9899:2011):
- 7.26.1/5 mtx_plain, mtx_recursive, mtx_timed (p: 377)
[編集] 関連項目
(C11) |
ミューテックスを作成します (関数) |