diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-03-06 22:58:34 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-03-06 22:58:34 +0000 |
| commit | 09806bc8d6a48fc79d923ec1cdf6f90176bf8b6a (patch) | |
| tree | e56db2f9587267331972c4d48438a87e486551b3 /src/lib | |
| parent | 7e479483826381699915aa90cc26736e3d2c76ed (diff) | |
| parent | 9ea5d42439564f462d1aaa74e46c0f9656886818 (diff) | |
Fix build.
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/job.cc | 25 | ||||
| -rw-r--r-- | src/lib/ui_signaller.h | 4 |
2 files changed, 9 insertions, 20 deletions
diff --git a/src/lib/job.cc b/src/lib/job.cc index 2ac8c6077..e48daa410 100644 --- a/src/lib/job.cc +++ b/src/lib/job.cc @@ -186,33 +186,22 @@ Job::paused () const void Job::set_state (State s) { - bool const finished = (s == FINISHED_OK || s == FINISHED_ERROR || s == FINISHED_CANCELLED); - - /* Do this first, so that we handle things that should happen on finish before the - * job is actually marked as such. This is important for callers that do: - * - * while (JobManager::work_to_do ()) { - * ui_signaller->ui_idle (); - * } - * - * as otherwise this loop can finish before the Finished handler has been executed - * (job finishes, calls set_state(), this sets the state and sets a pending signal - * for Finished, but this is never called as a ui_idle() never happens as work_to_do() - * is now false). - */ - if (finished && ui_signaller) { - ui_signaller->emit (boost::bind (boost::ref (Finished))); - } + bool finished = false; { boost::mutex::scoped_lock lm (_state_mutex); _state = s; - if (finished) { + if (_state == FINISHED_OK || _state == FINISHED_ERROR || _state == FINISHED_CANCELLED) { _ran_for = elapsed_time (); + finished = true; _sub_name.clear (); } } + + if (finished && ui_signaller) { + ui_signaller->emit (boost::bind (boost::ref (Finished))); + } } /** @return DCPTime (in seconds) that this sub-job has been running */ diff --git a/src/lib/ui_signaller.h b/src/lib/ui_signaller.h index 7e0f57513..1d62547f6 100644 --- a/src/lib/ui_signaller.h +++ b/src/lib/ui_signaller.h @@ -55,8 +55,8 @@ public: } /** Call this in the UI when it is idle */ - void ui_idle () { - _service.poll (); + size_t ui_idle () { + return _service.poll (); } /** This should wake the UI and make it call ui_idle() */ |
