我使用multiprocess.Process
创建子进程,然后调用os.wait4
直到子进程存在。实际子进程完成后,multiprocess.Process.is_alive()
仍会返回True
。这是矛盾的。为什么呢?
代码:
from multiprocessing import Process
import os, sys
proc = Process(target=os.system, args= ("sleep 2", ))
proc.start()
print "is_alive()", proc.is_alive()
ret = os.wait4(proc.pid, 0)
procPid, procStatus, procRes = ret
print "wait4 = ", ret
## Puzzled!
print "----Puzzled below----"
print "is_alive()", proc.is_alive()
if os.WIFEXITED(procStatus):
print "exit with status", os.WEXITSTATUS(procStatus)
print "is_alive()", proc.is_alive()
sys.exit(1)
输出:
is_alive() True
wait4 = (11137, 0, resource.struct_rusage(ru_utime=0.0028959999999999997, ru_stime=0.003189, ru_maxrss=1363968, ru_ixrss=0, ru_idrss=0, ru_isrss=0, ru_minflt=818, ru_majflt=0, ru_nswap=0, ru_inblock=0, ru_oublock=0, ru_msgsnd=0, ru_msgrcv=0, ru_nsignals=0, ru_nvcsw=1, ru_nivcsw=9))
----Puzzled below----
is_alive() True
exit with status 0
is_alive() True
我的问题是关于最后三行输出。实际流程完成后,为什么is_alive()
会返回True
。怎么会发生这种情况?
答案 0 :(得分:11)
您应该使用Process.join
代替os.wait4
。
Process.is_alive
通过waitpid
内部调用multiprocessing.forking.Popen.poll
。os.wait4
,waitpid
会引发os.error
,导致poll()
返回None
。 (http://hg.python.org/cpython/file/c167ab1c49c9/Lib/multiprocessing/forking.py#l141)is_alive()
使用该返回值来确定进程是否处于活动状态。 (http://hg.python.org/cpython/file/c167ab1c49c9/Lib/multiprocessing/process.py#l159)
True
。替换以下行:
ret = os.wait4(proc.pid, 0)
使用:
proc.join()