mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-15 02:36:16 +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…
Reference in a new issue