prevent multiple creation of cpu usage thread
This commit is contained in:
parent
90f319ebda
commit
a1cbc45b88
@ -7,11 +7,13 @@ logger = logging.getLogger(__name__)
|
||||
|
||||
class CpuUsageThread(threading.Thread):
|
||||
sharedInstance = None
|
||||
creationLock = threading.Lock()
|
||||
|
||||
@staticmethod
|
||||
def getSharedInstance():
|
||||
if CpuUsageThread.sharedInstance is None:
|
||||
CpuUsageThread.sharedInstance = CpuUsageThread()
|
||||
with CpuUsageThread.creationLock:
|
||||
if CpuUsageThread.sharedInstance is None:
|
||||
CpuUsageThread.sharedInstance = CpuUsageThread()
|
||||
return CpuUsageThread.sharedInstance
|
||||
|
||||
def __init__(self):
|
||||
|
Loading…
Reference in New Issue
Block a user