PFZheng / psutil

Automatically exported from code.google.com/p/psutil
Other
0 stars 0 forks source link

Process.wait() on POSIX should not be implemented as a busy loop #445

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
It currently is:
https://code.google.com/p/psutil/source/browse/psutil/_psposix.py?name=release-1
.2.0#42
A nicer solution would use some syscall which just 'awakes' when the process is 
gone.

Original issue reported on code.google.com by g.rodola on 26 Nov 2013 at 8:47