[c++ grpc] Simplify io_manager::wait
This commit is contained in:
Родитель
0637203975
Коммит
05d6783e08
|
@ -5,7 +5,7 @@
|
|||
|
||||
#include <bond/core/config.h>
|
||||
|
||||
#include <bond/ext/detail/event.h>
|
||||
#include <bond/core/detail/once.h>
|
||||
#include <bond/ext/grpc/detail/io_manager_tag.h>
|
||||
|
||||
#ifdef _MSC_VER
|
||||
|
@ -179,10 +179,10 @@ namespace bond { namespace ext { namespace gRPC {
|
|||
/// return.
|
||||
void wait()
|
||||
{
|
||||
bool shouldShutdown = !_isShutdownInProgress.test_and_set();
|
||||
if (shouldShutdown)
|
||||
bond::detail::call_once(
|
||||
_waitFlag,
|
||||
[this]
|
||||
{
|
||||
// borrow the current thread to clean up
|
||||
for (auto& thread : _threads)
|
||||
{
|
||||
BOOST_ASSERT(thread.joinable());
|
||||
|
@ -190,14 +190,7 @@ namespace bond { namespace ext { namespace gRPC {
|
|||
}
|
||||
|
||||
_threads.clear();
|
||||
|
||||
_shutdownCompleted.set();
|
||||
}
|
||||
else
|
||||
{
|
||||
// some other thread is performing clean up, so wait for it
|
||||
_shutdownCompleted.wait();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
private:
|
||||
|
@ -219,8 +212,7 @@ namespace bond { namespace ext { namespace gRPC {
|
|||
std::vector<std::thread> _threads;
|
||||
|
||||
std::atomic_flag _isShutdownRequested = ATOMIC_FLAG_INIT;
|
||||
std::atomic_flag _isShutdownInProgress = ATOMIC_FLAG_INIT;
|
||||
bond::ext::detail::event _shutdownCompleted;
|
||||
bond::detail::once_flag _waitFlag{};
|
||||
};
|
||||
|
||||
} } } // namespace bond::ext::gRPC
|
||||
|
|
Загрузка…
Ссылка в новой задаче