1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-08 05:09:24 +00:00

bitbake: cooker: Assign a name to the sync thread to aid debugging

(Bitbake rev: ffdb3d3fa690c35e9a96fc451a5811f5131276f3)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie
2020-09-04 15:54:27 +01:00
parent aaa286e48a
commit 38c05fb822
+1 -1
View File
@@ -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()