helper_threading formating

This commit is contained in:
Mahendra 2018-04-07 15:14:43 +05:30
parent c5462a00cc
commit e6e4c66010
No known key found for this signature in database
GPG Key ID: A672D8FAAEE398B3
1 changed files with 10 additions and 3 deletions

View File

@ -1,9 +1,13 @@
"""Helper threading perform all the threading operations."""
from contextlib import contextmanager
import threading
try:
import prctl
def set_thread_name(name): prctl.set_name(name)
def set_thread_name(name):
prctl.set_name(name)
def _thread_name_hack(self):
set_thread_name(self.name)
@ -12,17 +16,20 @@ try:
threading.Thread.__bootstrap_original__ = threading.Thread._Thread__bootstrap
threading.Thread._Thread__bootstrap = _thread_name_hack
except ImportError:
def set_thread_name(name): threading.current_thread().name = name
def set_thread_name(name):
threading.current_thread().name = name
class StoppableThread(object):
def initStop(self):
self.stop = threading.Event()
self._stopped = False
def stopThread(self):
self._stopped = True
self.stop.set()
class BusyError(threading.ThreadError):
pass