Lines Matching refs:process
2 # Module for starting a process object using os.fork() or CreateProcess()
40 from multiprocessing import util, process
45 # Check that the current thread is spawning a child process
111 # whose constructor takes a process object as its argument.
139 # Child process not yet created. See #1731717
240 # whose constructor takes a process object as its argument.
245 Start a subprocess to run the code of a process object
257 # start process
334 Run code for process object if this in not the main process
343 Returns prefix of command line used for spawning a child process
345 if getattr(process.current_process(), '_inheriting', False):
347 Attempt to start a new process before the current process
378 process.current_process()._inheriting = True
382 process.current_process()._inheriting = False
392 Return info about parent needed by child to unpickle process object
401 orig_dir=process.ORIGINAL_DIR,
402 authkey=process.current_process().authkey,
414 process.ORIGINAL_DIR is not None:
415 main_path = os.path.join(process.ORIGINAL_DIR, main_path)
437 # Prepare current process
444 Try to get current process ready to unpickle process object
449 process.current_process().name = data['name']
452 process.current_process()._authkey = data['authkey']
470 process.ORIGINAL_DIR = data['orig_dir']