Merge pull request #6565

fb08d92 Make sure we re-acquire lock if a task throws (Casey Rodarmor)
This commit is contained in:
Wladimir J. van der Laan 2015-08-19 16:26:37 +02:00
commit a6f2affde8
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
1 changed files with 7 additions and 5 deletions

View File

@ -6,6 +6,7 @@
#include <assert.h>
#include <boost/bind.hpp>
#include <boost/thread/reverse_lock.hpp>
#include <utility>
CScheduler::CScheduler() : nThreadsServicingQueue(0), stopRequested(false), stopWhenEmpty(false)
@ -65,11 +66,12 @@ void CScheduler::serviceQueue()
Function f = taskQueue.begin()->second;
taskQueue.erase(taskQueue.begin());
// Unlock before calling f, so it can reschedule itself or another task
// without deadlocking:
lock.unlock();
f();
lock.lock();
{
// Unlock before calling f, so it can reschedule itself or another task
// without deadlocking:
boost::reverse_lock<boost::unique_lock<boost::mutex> > rlock(lock);
f();
}
} catch (...) {
--nThreadsServicingQueue;
throw;