std::recursive_timed_mutex:: recursive_timed_mutex
From cppreference.net
<
cpp
|
thread
|
recursive timed mutex
C++
Concurrency support library
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
std::recursive_timed_mutex
| Member functions | ||||
|
recursive_timed_mutex::recursive_timed_mutex
|
||||
| Locking | ||||
| Native handle | ||||
|
recursive_timed_mutex
(
)
;
|
(1) | (C++11부터) |
|
recursive_timed_mutex
(
const
recursive_timed_mutex
&
)
=
delete
;
|
(2) | (C++11부터) |
1)
뮤텍스를 생성합니다. 호출 후 뮤텍스는 잠금 해제 상태입니다.
2)
복사 생성자가 삭제되었습니다.
매개변수
(없음)
예외
std::system_error 생성이 실패할 경우.
참고 항목
|
C 문서
for
mtx_init
|