Searched refs:task_handler (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Lib/multiprocessing/ |
D | pool.py | 482 def _help_stuff_finish(inqueue, task_handler, size): argument 486 while task_handler.is_alive() and inqueue._reader.poll(): 492 worker_handler, task_handler, result_handler, cache): argument 497 task_handler._state = TERMINATE 500 cls._help_stuff_finish(inqueue, task_handler, len(pool)) 521 if threading.current_thread() is not task_handler: 522 task_handler.join(1e100) 741 def _help_stuff_finish(inqueue, task_handler, size): argument
|
/external/python/cpython3/Lib/multiprocessing/ |
D | pool.py | 563 def _help_stuff_finish(inqueue, task_handler, size): argument 567 while task_handler.is_alive() and inqueue._reader.poll(): 573 worker_handler, task_handler, result_handler, cache): argument 578 task_handler._state = TERMINATE 581 cls._help_stuff_finish(inqueue, task_handler, len(pool)) 604 if threading.current_thread() is not task_handler: 605 task_handler.join() 811 def _help_stuff_finish(inqueue, task_handler, size): argument
|