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

@ -110,7 +110,7 @@ class WritingPipe(Pipe):
This sends the opening operation off to a background thread. If we were to block the thread here, another pipe
may be waiting in the queue to be opened on the opposing side, resulting in a deadlock
"""
threading.Thread(target=self.open_and_dequeue).start()
threading.Thread(target=self.open_and_dequeue, name="csdr_pipe_thread").start()
def write(self, data):
"""