Home | History | Annotate | Download | only in multiprocessing

Lines Matching defs:threading

45 import threading
167 self.mutex = threading.RLock()
182 t = threading.Thread(target=self.handle_request, args=(c,))
230 threading.current_thread().name)
280 threading.current_thread().name)
293 threading.current_thread().name)
421 threading.current_thread().name = name
740 if threading.current_thread().name != 'MainThread':
741 name += '|' + threading.current_thread().name
754 threading.current_thread().name)
818 threading.current_thread().name)
1100 SyncManager.register('Event', threading.Event, EventProxy)
1101 SyncManager.register('Lock', threading.Lock, AcquirerProxy)
1102 SyncManager.register('RLock', threading.RLock, AcquirerProxy)
1103 SyncManager.register('Semaphore', threading.Semaphore, AcquirerProxy)
1104 SyncManager.register('BoundedSemaphore', threading.BoundedSemaphore,
1106 SyncManager.register('Condition', threading.Condition, ConditionProxy)