sigwaitinfo.c raw

   1  #include <signal.h>
   2  
   3  int sigwaitinfo(const sigset_t *restrict mask, siginfo_t *restrict si)
   4  {
   5  	return sigtimedwait(mask, si, 0);
   6  }
   7