improve cpu usage thread instance protection
This commit is contained in:
parent
113c06fae4
commit
502546f9d3
@ -23,6 +23,7 @@ class CpuUsageThread(threading.Thread):
|
|||||||
self.last_idletime = 0
|
self.last_idletime = 0
|
||||||
self.endEvent = threading.Event()
|
self.endEvent = threading.Event()
|
||||||
super().__init__()
|
super().__init__()
|
||||||
|
self.start()
|
||||||
|
|
||||||
def run(self):
|
def run(self):
|
||||||
logger.debug("cpu usage thread starting up")
|
logger.debug("cpu usage thread starting up")
|
||||||
@ -59,8 +60,6 @@ class CpuUsageThread(threading.Thread):
|
|||||||
|
|
||||||
def add_client(self, c):
|
def add_client(self, c):
|
||||||
self.clients.append(c)
|
self.clients.append(c)
|
||||||
if not self.is_alive():
|
|
||||||
self.start()
|
|
||||||
|
|
||||||
def remove_client(self, c):
|
def remove_client(self, c):
|
||||||
try:
|
try:
|
||||||
@ -71,6 +70,7 @@ class CpuUsageThread(threading.Thread):
|
|||||||
self.shutdown()
|
self.shutdown()
|
||||||
|
|
||||||
def shutdown(self):
|
def shutdown(self):
|
||||||
CpuUsageThread.sharedInstance = None
|
with CpuUsageThread.creationLock:
|
||||||
|
CpuUsageThread.sharedInstance = None
|
||||||
self.doRun = False
|
self.doRun = False
|
||||||
self.endEvent.set()
|
self.endEvent.set()
|
||||||
|
Loading…
Reference in New Issue
Block a user