From 38c05fb8229f48430c64e0735c9e646617b680e4 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Fri, 4 Sep 2020 15:54:27 +0100 Subject: bitbake: cooker: Assign a name to the sync thread to aid debugging (Bitbake rev: ffdb3d3fa690c35e9a96fc451a5811f5131276f3) Signed-off-by: Richard Purdie --- bitbake/lib/bb/cooker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py index eb0ed7878e..010105a60f 100644 --- a/bitbake/lib/bb/cooker.py +++ b/bitbake/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() -- cgit v1.2.3-54-g00ecf