std::latch:: wait
From cppreference.com
C++
Concurrency support library
|
|
std::latch
Member functions | ||||
latch::wait
|
||||
Constants | ||||
void
wait
(
)
const
;
|
(since C++20) | |
Blocks the calling thread until the internal counter reaches 0 . If it is zero already, returns immediately.
Parameters
(none)
Return value
(none)
Exceptions
Throws std::system_error with an error code allowed for mutex types on error.
Retrieved from "
https://en.cppreference.com/mwiki/index.php?title=cpp/thread/latch/wait&oldid=161159
"