我需要一些子流程终止后的信息。
例如utime
中的VMPeak
和/proc
就像这样:
proc.wait()
with open('/proc/%d/stat' % proc.pid, "r") as f:
stat = str(f.read()).strip().split()
# 14th column is utime, 15th column is stime (man 5 proc)
cpu_time = int(stat[14]) + int(stat[15])
return cpu_time
但是Python Popen.wait()
发布了PID
,所以我会得到:
No such file or directory
我可以在终止后获得 ,或等待终止而不发布PID
? (我的意思是等待终止没有调用wait()
,这将释放所有资源。)
如果你能帮助我,我将不胜感激。谢谢!
答案 0 :(得分:1)
引自man 5 proc
:
/proc/[pid]
每个正在运行的进程都有一个数字子目录;子目录由进程ID命名。
已终止的进程不再运行,其/proc/[pid]
目录(包括stat
文件)不再存在
如果它会在那里,你可以在调用proc.wait()
之前将PID存储在变量中:
pid = proc.pid
proc.wait()
with open('/proc/%d/stat' % pid, "r") as f:
没有“刚刚终止”事件; subprocess
等待,然后获取退出代码。
您可以自己等待os.wait4()
代替:
pid, status, resources = os.wait4(proc.pid, 0)
cpu_time = resources.ru_utime + resources.ru_stime
resources
是一个命名元组,请参阅resource.getrusage()
以获取它支持的名称列表。 .ru_utime
和.ru_stime
都是浮点值。