Home | History | Annotate | Download | only in multiprocessing

Lines Matching refs:threading

16 import threading
24 # If threading is available then ThreadPool should be provided. Therefore
170 self._worker_handler = threading.Thread(
179 self._task_handler = threading.Thread(
188 self._result_handler = threading.Thread(
361 thread = threading.current_thread()
374 thread = threading.current_thread()
425 thread = threading.current_thread()
545 if threading.current_thread() is not worker_handler:
556 if threading.current_thread() is not task_handler:
560 if threading.current_thread() is not result_handler:
584 self._event = threading.Event()
669 self._cond = threading.Condition(threading.Lock())