Qudi
|
Mutex that can be taken recursively. More...
Public Member Functions | |
def | __init__ (self, kwds) |
![]() | |
def | __init__ (self, args, kargs) |
def | tryLock (self, timeout=None, id=None) |
Try to lock the mutex. More... | |
def | lock (self, id=None) |
Lock mutex. More... | |
def | unlock (self) |
Unlock mutex. | |
def | acquire (self, blocking=True) |
Mimics threading.Lock.acquire() to allow this class as a drop-in replacement. | |
def | release (self) |
Mimics threading.Lock.release() to allow this class as a drop-in replacement. | |
def | depth (self) |
Depth of traceback. More... | |
def | traceback (self) |
Get traceback. More... | |
def | __exit__ (self, args) |
Exit context. More... | |
def | __enter__ (self) |
Enter context. More... | |
Additional Inherited Members | |
![]() | |
l | |
tb | |
debug | |
Mutex that can be taken recursively.