MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / join

Method join

tools/python-3.11.9-amd64/Lib/multiprocessing/pool.py:659–669  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

657 self._terminate()
658
659 def join(self):
660 util.debug('joining pool')
661 if self._state == RUN:
662 raise ValueError("Pool is still running")
663 elif self._state not in (CLOSE, TERMINATE):
664 raise ValueError("In unknown state")
665 self._worker_handler.join()
666 self._task_handler.join()
667 self._result_handler.join()
668 for p in self._pool:
669 p.join()
670
671 @staticmethod
672 def _help_stuff_finish(inqueue, task_handler, size):

Callers 15

sqlMethod · 0.45
make_idFunction · 0.45
__init__Method · 0.45
make_shortMethod · 0.45
add_fileMethod · 0.45
__init__Method · 0.45
spawn.pyFile · 0.45
get_command_lineFunction · 0.45
get_preparation_dataFunction · 0.45
_exit_functionFunction · 0.45
__init__Method · 0.45
__init__Method · 0.45

Calls 1

debugMethod · 0.45

Tested by

no test coverage detected