我有一个小的python脚本,基本上如下所示:
import os
import psutil
def processtree():
pid = os.getpid()
# have to go two levels up to skip calling shell and
# get to actual parent process
parent = psutil.Process(pid).parent().parent()
print 'Parent %s [PID = %d]' % (parent.name(), parent.pid)
print ' |'
for child in parent.children(recursive=True):
if child.pid != pid:
print ' - Child %s [PID = %d]' % (child.name(), child.pid)
else:
print ' - Child %s [PID = %d] (Self)' % (child.name(), child.pid)
if '__name__' == '__main__':
processtree()
当我在Windows上的bash
中运行此脚本时,没有其他任何内容正在运行,我看到以下内容:
Parent bash.exe [PID = 5984]
|
- Child bash.exe [PID = 5008]
|
- Child python.exe [PID = 3736] (Self)
此信息是正确的。父bash进程是PID 5984,python进程是3736.现在,我运行sleep 10000 &
以便它作为PID 5984的子进程运行。我检查ps -aef | grep 5984
它就在那里;:
$ ps -aef | grep 5984 | grep -v grep | grep -v ps
myuser 5984 1 con May 12 /bin/bash
myuser 5080 5984 con 11:17:12 /bin/sleep
myuser 3948 5984 con 11:36:47 /bin/bash
然而,当我再次运行我的脚本时,它仍会显示:
Parent bash.exe [PID = 5984]
|
- Child bash.exe [PID = 7560]
|
- Child python.exe [PID = 5168] (Self)
它不会将sleep
显示为父级bash进程的子级,即使ps
将其显示为存在。
请注意,自创建新的调用shell以来,bash.exe子级的PID已更改(不确定为什么会发生这种情况,但我认为它不相关)。 python解释器的PID因为我再次调用脚本python processtree.py
。
不确定我做错了什么,而且我已经盯着这一段时间了。任何帮助表示赞赏...
答案 0 :(得分:3)
发表评论,以便其他人不会将此视为未回答的未解答的问题
您需要改为使用parent = psutil.Process(pid).parent()
。
在Unix中,fork
和exec
的组合会导致第二个 bash 进程被sleep替换。
Windows基于创建进程的生成模型,这是从DEC VMS继承的遗留。 (Dave Cutler管理了VMS和NT的设计。很多前DEC工程师在1988年跟随他去了Microsoft。)NT内核实际上可以实现fork
和exec
,它为{ {3}}