From ec9022de4bc2948702e2248865821f1ad2c75e22 Mon Sep 17 00:00:00 2001 From: Mehdi Amini Date: Sat, 19 Dec 2015 22:56:24 +0000 Subject: [PATCH] ThreadPool unittests: do not hold mutex when calling condition_variable:notify() From: Mehdi Amini git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@256111 91177308-0d34-0410-b5e6-96231b3b80d8 --- unittests/Support/ThreadPool.cpp | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/unittests/Support/ThreadPool.cpp b/unittests/Support/ThreadPool.cpp index b0307d1f16a..0f36c383d49 100644 --- a/unittests/Support/ThreadPool.cpp +++ b/unittests/Support/ThreadPool.cpp @@ -62,12 +62,16 @@ protected: } /// Set the readiness of the main thread. - void setMainThreadReadyState(bool Ready) { - std::unique_lock LockGuard(WaitMainThreadMutex); - MainThreadReady = Ready; + void setMainThreadReady() { + { + std::unique_lock LockGuard(WaitMainThreadMutex); + MainThreadReady = true; + } WaitMainThread.notify_all(); } + void SetUp() override { MainThreadReady = false; } + std::condition_variable WaitMainThread; std::mutex WaitMainThreadMutex; bool MainThreadReady; @@ -86,7 +90,6 @@ TEST_F(ThreadPoolTest, AsyncBarrier) { std::atomic_int checked_in{0}; - setMainThreadReadyState(false); ThreadPool Pool; for (size_t i = 0; i < 5; ++i) { Pool.async([this, &checked_in, i] { @@ -95,7 +98,7 @@ TEST_F(ThreadPoolTest, AsyncBarrier) { }); } ASSERT_EQ(0, checked_in); - setMainThreadReadyState(true); + setMainThreadReady(); Pool.wait(); ASSERT_EQ(5, checked_in); } @@ -119,14 +122,13 @@ TEST_F(ThreadPoolTest, Async) { CHECK_UNSUPPORTED(); ThreadPool Pool; std::atomic_int i{0}; - setMainThreadReadyState(false); Pool.async([this, &i] { waitForMainThread(); ++i; }); Pool.async([&i] { ++i; }); ASSERT_NE(2, i.load()); - setMainThreadReadyState(true); + setMainThreadReady(); Pool.wait(); ASSERT_EQ(2, i.load()); } @@ -135,7 +137,6 @@ TEST_F(ThreadPoolTest, GetFuture) { CHECK_UNSUPPORTED(); ThreadPool Pool; std::atomic_int i{0}; - setMainThreadReadyState(false); Pool.async([this, &i] { waitForMainThread(); ++i; @@ -143,7 +144,7 @@ TEST_F(ThreadPoolTest, GetFuture) { // Force the future using get() Pool.async([&i] { ++i; }).get(); ASSERT_NE(2, i.load()); - setMainThreadReadyState(true); + setMainThreadReady(); Pool.wait(); ASSERT_EQ(2, i.load()); } @@ -153,7 +154,6 @@ TEST_F(ThreadPoolTest, PoolDestruction) { // Test that we are waiting on destruction std::atomic_int checked_in{0}; { - setMainThreadReadyState(false); ThreadPool Pool; for (size_t i = 0; i < 5; ++i) { Pool.async([this, &checked_in, i] { @@ -162,7 +162,7 @@ TEST_F(ThreadPoolTest, PoolDestruction) { }); } ASSERT_EQ(0, checked_in); - setMainThreadReadyState(true); + setMainThreadReady(); } ASSERT_EQ(5, checked_in); } -- 2.34.1