mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-15 10:52:30 +00:00
35 lines
787 B
C++
35 lines
787 B
C++
#include <Common/ThreadPool.h>
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
/** Reproduces bug in ThreadPool.
|
|
* It get stuck if we call 'wait' many times from many other threads simultaneously.
|
|
*/
|
|
|
|
|
|
TEST(ThreadPool, ConcurrentWait)
|
|
{
|
|
auto worker = []
|
|
{
|
|
for (size_t i = 0; i < 100000000; ++i)
|
|
__asm__ volatile ("nop");
|
|
};
|
|
|
|
constexpr size_t num_threads = 4;
|
|
constexpr size_t num_jobs = 4;
|
|
|
|
ThreadPool pool(num_threads);
|
|
|
|
for (size_t i = 0; i < num_jobs; ++i)
|
|
pool.scheduleOrThrowOnError(worker);
|
|
|
|
constexpr size_t num_waiting_threads = 4;
|
|
|
|
ThreadPool waiting_pool(num_waiting_threads);
|
|
|
|
for (size_t i = 0; i < num_waiting_threads; ++i)
|
|
waiting_pool.scheduleOrThrowOnError([&pool] { pool.wait(); });
|
|
|
|
waiting_pool.wait();
|
|
}
|