projects
/
oweals
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2f25664
)
buildman: Drop the 'alive' flag in BuilderThread
author
Simon Glass
<sjg@chromium.org>
Sun, 18 Sep 2016 22:48:38 +0000
(16:48 -0600)
committer
sjg
<sjg@chromium.org>
Sun, 9 Oct 2016 15:30:32 +0000
(09:30 -0600)
This is not used, so drop it.
Signed-off-by: Simon Glass <sjg@chromium.org>
tools/buildman/builderthread.py
patch
|
blob
|
history
diff --git
a/tools/buildman/builderthread.py
b/tools/buildman/builderthread.py
index af4d15a5b42abdaf5755e0e1b921579701ad8625..c4fe21953214f7d9e4f022c6a8686188afe72660 100644
(file)
--- a/
tools/buildman/builderthread.py
+++ b/
tools/buildman/builderthread.py
@@
-470,9
+470,7
@@
class BuilderThread(threading.Thread):
This thread picks a job from the queue, runs it, and then goes to the
next job.
"""
- alive = True
while True:
job = self.builder.queue.get()
- if alive:
- self.RunJob(job)
+ self.RunJob(job)
self.builder.queue.task_done()