Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #2871
| From | Nobody <nobody@nowhere.com> |
|---|---|
| Subject | Re: How to get a PID of a child process from a process openden with Popen() |
| Date | 2011-04-08 20:28 +0100 |
| Message-Id | <pan.2011.04.08.19.28.06.47000@nowhere.com> |
| Newsgroups | comp.lang.python |
| References | <d405cb62-f0e7-4db8-a2d7-41fc800a3ab9@glegroupsg2000goo.googlegroups.com> |
| Organization | Zen Internet |
On Fri, 08 Apr 2011 07:43:41 -0700, Miki Tebeka wrote:
>> p = subprocess.Popen(shlex.split("kdesu -u test program"))
>>
>> How can I aquire the PID of the program which kdesu starts?
>
> You can run "ps --ppid <p.pid>" and get the line containing test program.
> The first field there should be the child process id.
This will fail if the kdesu process has terminated at that point (the
documentation doesn't say whether it waits for the child to terminate).
Once a process' parent has terminated, it's PPID will become 1 (i.e. it
will be "adopted" by the init process).
There isn't a robust solution to the OP's problem. It's typically
impossible to determine whether one process is an ancestor of another if
any of the intermediate processes have terminated.
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Re: How to get a PID of a child process from a process openden with Popen() Miki Tebeka <miki.tebeka@gmail.com> - 2011-04-08 07:43 -0700
Re: How to get a PID of a child process from a process openden with Popen() Nobody <nobody@nowhere.com> - 2011-04-08 20:28 +0100
Re: How to get a PID of a child process from a process openden with Popen() Chris Angelico <rosuav@gmail.com> - 2011-04-09 08:35 +1000
csiph-web