You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thinking back, a more generic "get_children" separate method would probable be better to solve this problem:
>>> p = psutil.Process(1024)
>>> for pid in p.get_children():
... psutil.Process(pid).kill()
...
>>> p.kill()
Merging into issue 97 for now.
From g.rodola on June 09, 2010 20:48:00
Original issue: http://code.google.com/p/psutil/issues/detail?id=93
The text was updated successfully, but these errors were encountered: