thread names to aid debugging

This commit is contained in:
Jakob Ketterl
2020-08-14 20:22:25 +02:00
parent 7e5ea6e065
commit 0030c6d656
7 changed files with 8 additions and 8 deletions

View File

@ -171,7 +171,7 @@ class SdrSource(ABC):
logger.debug("shut down with RC={0}".format(rc))
self.monitor = None
self.monitor = threading.Thread(target=wait_for_process_to_end)
self.monitor = threading.Thread(target=wait_for_process_to_end, name="source_monitor")
self.monitor.start()
retries = 1000