Made changes while import prctl

This commit is contained in:
Mahendra Garg 2018-04-10 14:19:34 +05:30
parent a836d0a9af
commit d81fb4b63e
No known key found for this signature in database
GPG Key ID: A672D8FAAEE398B3
1 changed files with 5 additions and 5 deletions

View File

@ -5,7 +5,11 @@ import threading
try:
import prctl
except ImportError:
def set_thread_name(name):
"""Set the thread name for external use (visible from the OS)."""
threading.current_thread().name = name
else:
def set_thread_name(name):
"""Set a name for the thread for python internal use."""
prctl.set_name(name)
@ -16,10 +20,6 @@ try:
threading.Thread.__bootstrap_original__ = threading.Thread._Thread__bootstrap
threading.Thread._Thread__bootstrap = _thread_name_hack
except ImportError:
def set_thread_name(name):
"""Set the thread name for external use (visible from the OS)."""
threading.current_thread().name = name
class StoppableThread(object):