summaryrefslogtreecommitdiffstats
path: root/tools/buildman/builderthread.py
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2021-04-11 16:27:25 +1200
committerSimon Glass <sjg@chromium.org>2021-04-29 03:23:39 -0700
commit249933136f860eb35f8729f4774b7058744bf31f (patch)
treea7859d32bea0a0f8c1a4cb09b81776adcc7f0556 /tools/buildman/builderthread.py
parent6784cb35f52b1f742a4b56cc6b5697b6ca784598 (diff)
downloadu-boot-249933136f860eb35f8729f4774b7058744bf31f.tar.gz
u-boot-249933136f860eb35f8729f4774b7058744bf31f.tar.xz
u-boot-249933136f860eb35f8729f4774b7058744bf31f.zip
buildman: Tidy up a few comments
Add some function comments which are missing, or missing arguments. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/buildman/builderthread.py')
-rw-r--r--tools/buildman/builderthread.py10
1 files changed, 7 insertions, 3 deletions
diff --git a/tools/buildman/builderthread.py b/tools/buildman/builderthread.py
index 06ed27203a..6f08ff2da0 100644
--- a/tools/buildman/builderthread.py
+++ b/tools/buildman/builderthread.py
@@ -89,10 +89,14 @@ class BuilderThread(threading.Thread):
Members:
builder: The builder which contains information we might need
thread_num: Our thread number (0-n-1), used to decide on a
- temporary directory. If this is -1 then there are no threads
- and we are the (only) main process
+ temporary directory. If this is -1 then there are no threads
+ and we are the (only) main process
+ mrproper: Use 'make mrproper' before each reconfigure
+ per_board_out_dir: True to build in a separate persistent directory per
+ board rather than a thread-specific directory
+ test_exception: Used for testing; True to raise an exception instead of
+ reporting the build result
"""
- def __init__(self, builder, thread_num, mrproper, per_board_out_dir):
"""Set up a new builder thread"""
threading.Thread.__init__(self)
self.builder = builder