Gitiles
Code Review
Sign In
gerrit.openbmc.org
/
openbmc
/
bmcweb
/
refs/heads/master
/
.
/
include
/
io_context_singleton.hpp
blob: 6d933c1f25881bb45a1153974ab97dfde004a940 [
file
] [
log
] [
blame
] [
edit
]
// SPDX-License-Identifier: Apache-2.0
// SPDX-FileCopyrightText: Copyright OpenBMC Authors
#pragma
once
#include
<boost/asio/io_context.hpp>
inline
boost
::
asio
::
io_context
&
getIoContext
()
{
static
boost
::
asio
::
io_context io
;
return
io
;
}