diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-15 23:20:20 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-15 23:20:20 +0000 |
commit | 5a178b547bbf6d99c42cba6821b3f559e585a079 (patch) | |
tree | 8bf05930f391a398f3a2412d2aad7e48afb043f7 /bitbake | |
parent | 03d40a4a7bd60dcbc21f5a06c0f4f53cb47de0f3 (diff) | |
download | poky-5a178b547bbf6d99c42cba6821b3f559e585a079.tar.gz |
bitbake/runqueue: When we have successfully collected a pid value return True to ensure we don't sleep in the main loop
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/runqueue.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index 1d38032e61..4e8b34d0bb 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py | |||
@@ -1028,6 +1028,7 @@ class RunQueueExecute: | |||
1028 | self.task_fail(task, result[1]>>8) | 1028 | self.task_fail(task, result[1]>>8) |
1029 | else: | 1029 | else: |
1030 | self.task_complete(task) | 1030 | self.task_complete(task) |
1031 | return True | ||
1031 | 1032 | ||
1032 | def finish_now(self): | 1033 | def finish_now(self): |
1033 | if self.stats.active: | 1034 | if self.stats.active: |