mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
threadpool: do not propagate exceptions through the dtor
This would call terminate. We ignore exceptions in pthread_join instead, as this is not a fatal problem here. Coverity 182568
This commit is contained in:
parent
6e8554221f
commit
ea7f954381
1 changed files with 2 additions and 1 deletions
|
@ -57,7 +57,8 @@ threadpool::~threadpool() {
|
|||
has_work.notify_all();
|
||||
}
|
||||
for (size_t i = 0; i<threads.size(); i++) {
|
||||
threads[i].join();
|
||||
try { threads[i].join(); }
|
||||
catch (...) { /* ignore */ }
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue