aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2020-09-04 15:54:27 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-09-05 11:45:10 +0100
commitffdb3d3fa690c35e9a96fc451a5811f5131276f3 (patch)
tree0fda4a129e4ac69299bd3ff49edca3c7e9f4a569
parent8f2d690428de8934868b406b79c4699a8ebe902c (diff)
downloadbitbake-ffdb3d3fa690c35e9a96fc451a5811f5131276f3.tar.gz
cooker: Assign a name to the sync thread to aid debugging
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--lib/bb/cooker.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/cooker.py b/lib/bb/cooker.py
index eb0ed7878..010105a60 100644
--- a/lib/bb/cooker.py
+++ b/lib/bb/cooker.py
@@ -2147,7 +2147,7 @@ class CookerParser(object):
for c in self.bb_caches.values():
c.sync()
- sync = threading.Thread(target=sync_caches)
+ sync = threading.Thread(target=sync_caches, name="SyncThread")
self.syncthread = sync
sync.start()
bb.codeparser.parser_cache_savemerge()