Home
last modified time | relevance | path

Searched refs:result_handler (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Lib/multiprocessing/
Dpool.py492 worker_handler, task_handler, result_handler, cache): argument
502 assert result_handler.is_alive() or len(cache) == 0
504 result_handler._state = TERMINATE
525 if threading.current_thread() is not result_handler:
526 result_handler.join(1e100)
/external/python/cpython3/Lib/multiprocessing/
Dpool.py573 worker_handler, task_handler, result_handler, cache): argument
583 if (not result_handler.is_alive()) and (len(cache) != 0):
587 result_handler._state = TERMINATE
608 if threading.current_thread() is not result_handler:
609 result_handler.join()