#include #include #include "haswaitp.h" int wait_nohang(int* wstat) { #ifdef HASWAITPID return waitpid(-1,wstat,WNOHANG); #else return wait3(wstat,WNOHANG,(struct rusage *) 0); #endif }