diff options
Diffstat (limited to 'bitbake/lib/bb/runqueue.py')
-rw-r--r-- | bitbake/lib/bb/runqueue.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index a868332509..25f1ab5ce5 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py | |||
@@ -1645,6 +1645,7 @@ class RunQueueExecuteScenequeue(RunQueueExecute): | |||
1645 | 1645 | ||
1646 | def task_complete(self, task): | 1646 | def task_complete(self, task): |
1647 | self.stats.taskCompleted() | 1647 | self.stats.taskCompleted() |
1648 | bb.event.fire(sceneQueueTaskCompleted(task, self.stats, self.rq), self.cfgData) | ||
1648 | self.task_completeoutright(task) | 1649 | self.task_completeoutright(task) |
1649 | 1650 | ||
1650 | def task_fail(self, task, result): | 1651 | def task_fail(self, task, result): |
@@ -1828,6 +1829,11 @@ class runQueueTaskCompleted(runQueueEvent): | |||
1828 | Event notifing a task completed | 1829 | Event notifing a task completed |
1829 | """ | 1830 | """ |
1830 | 1831 | ||
1832 | class sceneQueueTaskCompleted(sceneQueueEvent): | ||
1833 | """ | ||
1834 | Event notifing a setscene task completed | ||
1835 | """ | ||
1836 | |||
1831 | class runQueuePipe(): | 1837 | class runQueuePipe(): |
1832 | """ | 1838 | """ |
1833 | Abstraction for a pipe between a worker thread and the server | 1839 | Abstraction for a pipe between a worker thread and the server |