2
0
mirror of https://github.com/boostorg/asio.git synced 2026-02-26 02:42:08 +00:00

Fix the arguments to select_reactor::run.

This commit is contained in:
Christopher Kohlhoff
2022-12-07 07:34:39 +11:00
parent 7811479a80
commit 26fd5e9bb6

View File

@@ -310,7 +310,7 @@ void select_reactor::run_thread()
{
lock.unlock();
op_queue<operation> ops;
run(true, ops);
run(-1, ops);
scheduler_.post_deferred_completions(ops);
lock.lock();
}