mirror of
https://github.com/NixOS/nix
synced 2025-07-05 16:31:47 +02:00
ThreadPool: catch Interrupted
This commit is contained in:
parent
de41e46175
commit
3f9ff10786
1 changed files with 5 additions and 0 deletions
|
@ -110,6 +110,11 @@ void ThreadPool::doWork(bool mainThread)
|
|||
propagate it. */
|
||||
try {
|
||||
std::rethrow_exception(exc);
|
||||
} catch (const Interrupted &) {
|
||||
// The interrupted state may be picked up multiple
|
||||
// workers, which is expected, so we should ignore
|
||||
// it silently and let the first one bubble up,
|
||||
// rethrown via the original state->exception.
|
||||
} catch (std::exception & e) {
|
||||
if (!dynamic_cast<ThreadPoolShutDown*>(&e))
|
||||
ignoreExceptionExceptInterrupt();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue