Closed lewissbaker closed 7 years ago
Add an implementation of async_auto_reset_event that allows multiple concurrent awaiters.
async_auto_reset_event
It differs from async_manual_reset_event in that a call to set() releases at one pending waiter rather than releasing all pending waiters.
async_manual_reset_event
set()
Implemented in 4b20a243b23e692c0c9e048da25bb429cf27b654
Add an implementation of
async_auto_reset_event
that allows multiple concurrent awaiters.It differs from
async_manual_reset_event
in that a call toset()
releases at one pending waiter rather than releasing all pending waiters.