PyBitmessage/src/helper_threading.py

22 lines
675 B
Python
Raw Normal View History

"""set_thread_name for threads that don't use StoppableThread"""
2018-04-07 09:44:43 +00:00
import threading
try:
import prctl
2018-04-10 08:49:34 +00:00
except ImportError:
def set_thread_name(name):
"""Set the thread name for external use (visible from the OS)."""
threading.current_thread().name = name
else:
2018-04-07 09:44:43 +00:00
def set_thread_name(name):
"""Set a name for the thread for python internal use."""
2018-04-07 09:44:43 +00:00
prctl.set_name(name)
def _thread_name_hack(self):
set_thread_name(self.name)
threading.Thread.__bootstrap_original__(self)
threading.Thread.__bootstrap_original__ = threading.Thread._Thread__bootstrap
threading.Thread._Thread__bootstrap = _thread_name_hack