On Windows, subprocess.Popen.terminate calls win32's TerminalProcess. However, the behavior I see is that child processes of the process I am trying to terminate are still running. Why is that? How do I ensure all child processes started by the process are killed?
|
|
||||
|
|
By using psutil:
|
|||||||||||
|
|
Use taskkill:
The flags to taskkill has the following docs:
Or walk the process tree using comtypes and win32api:
|
||||
|
|
|
This is a hard thing to do. Windows does not actually store a process tree in the process space. Nor is it possible to terminate a process and specify that it's children should also die. One way around that is to use taskkill and tell it to wack the whole tree. Another way to do it (assuming that you are spawning the top-level process) is to use a module that was developed with this sort of thing in mind: http://benjamin.smedbergs.us/blog/tag/killableprocess/ In order to do this generically for yourself, you have to spend some time building the list backwards. That is, a process stores pointers to it's PARENT, but parents appear to not store information about children. So you have to look at all the processes in the system (which really isn't that hard), and then manually connect the dots yourself by looking at the parent process field. Then, you select the tree you are interested in and walk the whole thing, killing each node in turn, one by one. Note that Windows doesn't update a child's parent pointer when the parent dies, so there may be gaps in your tree. I'm not aware of anything you can do about those. |
|||
|
|
|
Here are 2 options
|
|||
|
|
|
Put the children in a NT Job object, then you can kill all children |
|||||
|
|
Here's example code for the Job object method, but instead of
|
|||
|
|