[Concept,03/11] buildman: Document toolchain member in BuilderThread

Message ID 20260105183030.1487468-4-sjg@u-boot.org
State New
Headers
Series buildman: Refactor control and builderthread |

Commit Message

Simon Glass Jan. 5, 2026, 6:30 p.m. UTC
  From: Simon Glass <simon.glass@canonical.com>

Add missing documentation for the toolchain member in the BuilderThread
class docstring. This member holds the selected toolchain for building
and is used throughout the class.

Co-developed-by: Claude Opus 4.5 <noreply@anthropic.com>
Signed-off-by: Simon Glass <simon.glass@canonical.com>
---

 tools/buildman/builderthread.py | 2 ++
 1 file changed, 2 insertions(+)
  

Patch

diff --git a/tools/buildman/builderthread.py b/tools/buildman/builderthread.py
index 1102f61ef45..c480f4888a1 100644
--- a/tools/buildman/builderthread.py
+++ b/tools/buildman/builderthread.py
@@ -189,6 +189,8 @@  class BuilderThread(threading.Thread):
             board rather than a thread-specific directory
         test_exception: Used for testing; True to raise an exception instead of
             reporting the build result
+        toolchain: Toolchain object to use for building, or None if not yet
+            selected
     """
     def __init__(self, builder, thread_num, mrproper, per_board_out_dir,
                  test_exception=False):