construct io_context with the hints that it's single-threaded

This commit is contained in:
arvidn 2019-11-13 10:46:57 +00:00 committed by Arvid Norberg
parent 98c36d03ae
commit 2bb7d92957
2 changed files with 2 additions and 2 deletions

@ -1 +1 @@
Subproject commit e4fb5e171a6ed885e7de3192153ba77835d23dee Subproject commit ba65f2fc25cb0cf6ab141102952b9c5c54f02c41

View File

@ -326,7 +326,7 @@ namespace {
if (internal_executor) if (internal_executor)
{ {
// the user did not provide an executor, we have to use our own // the user did not provide an executor, we have to use our own
m_io_service = std::make_shared<io_service>(); m_io_service = std::make_shared<io_service>(1);
ios = m_io_service.get(); ios = m_io_service.get();
} }