Skip to content
Snippets Groups Projects
Commit 09de534d authored by Florian Schmaus's avatar Florian Schmaus
Browse files

[Runtime] Ensure that worker threads terminate simultaneously

parent 899dcd47
No related branches found
No related tags found
1 merge request!142Various test-runner improvements
......@@ -67,6 +67,7 @@ using emper::io::IoContext;
Runtime::Runtime(workerid_t workerCount, RuntimeStrategyFactory& strategyFactory, unsigned int seed)
: workerCount(workerCount),
workerLatch(workerCount),
workerThreadExitLatch(workerCount),
strategy(strategyFactory.constructRuntimeStrategy(*this)),
scheduler(strategy->getScheduler()),
dispatcher(strategy->getDispatcher()),
......@@ -229,6 +230,12 @@ auto Runtime::workerLoop(Worker* worker) -> void* {
// Threads return here if Context::switchToOriginalStack() is called.
// Ensure that all worker threads exit "at the same" time. Otherwise
// it would be possible that one thread is work-stealing,
// potentially accessing a work stealing queue of an worker thread
// that already exited, causing an invalid access.
workerThreadExitLatch.count_down_and_wait();
return nullptr;
}
......
......@@ -51,6 +51,7 @@ class Runtime : public Logger<LogSubsystem::RUNTI> {
std::vector<std::function<void(workerid_t)>> newWorkerHooks;
Latch workerLatch;
Latch workerThreadExitLatch;
RuntimeStrategy* const strategy;
Scheduler& scheduler;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment