Home
last modified time | relevance | path

Searched refs:sigwait (Results 1 – 17 of 17) sorted by relevance

/netbsd/src/lib/libc/sys/
Dsigwait.c45 __weak_alias(sigwait,_sigwait)
DMakefile.inc12 sigqueue.c sigtimedwait.c sigwait.c sigwaitinfo.c statvfs.c swapon.c \
390 MLINKS+=sigtimedwait.2 sigwait.2
/netbsd/src/external/bsd/ntp/dist/sntp/m4/
Dntp_libntp.m4375 # We'd like to use sigwait() too
378 [sigwait],
382 [sigwait],
386 [sigwait],
401 [sigwait],
408 AC_DEFINE([HAVE_SIGWAIT], [1], [sigwait() available?])
437 AC_DEFINE([HAVE_UNIXWARE_SIGWAIT], [1], [deviant sigwait?])
/netbsd/src/include/
Dsignal.h191 int sigwait (const sigset_t * __restrict, int * __restrict);
/netbsd/src/lib/libpthread/
Dpthread_mi.expsym269 sigwait
Dpthread_cancelstub.c715 sigwait(const sigset_t * restrict set, int * restrict sig) in sigwait() function
817 __strong_alias(_sigwait, sigwait)
/netbsd/src/external/bsd/libbind/dist/
Dconfigure.in401 # We'd like to use sigwait() too
403 AC_CHECK_FUNC(sigwait,
405 AC_CHECK_LIB(c, sigwait,
407 AC_CHECK_LIB(pthread, sigwait,
416 # Additional OS-specific issues related to pthreads and sigwait.
420 # One more place to look for sigwait.
423 AC_CHECK_LIB(c_r, sigwait, AC_DEFINE(HAVE_SIGWAIT),)
441 # Ensure the right sigwait() semantics on Solaris and make
2826 # Shut up a -Wmissing-prototypes warning for sigwait().
Dconfigure22737 /* Define sigwait to an innocuous variant, in case <limits.h> declares sigwait.
22742 which can conflict with char sigwait (); below.
22760 char sigwait ();
22771 return sigwait ();
22833 char sigwait ();
22837 return sigwait ();
22900 char sigwait ();
22904 return sigwait ();
23139 char sigwait ();
23143 return sigwait ();
/netbsd/src/external/gpl3/gcc/dist/gcc/config/vms/
Dvms-crtlmap.map730 sigwait
/netbsd/src/external/bsd/ntp/dist/sntp/
Dconfig.h.in377 /* sigwait() available? */
595 /* deviant sigwait? */
Dconfigure14734 char sigwait ();
14738 return sigwait ();
14773 char sigwait ();
14777 return sigwait ();
14866 char sigwait ();
14870 return sigwait ();
/netbsd/src/tests/lib/libpthread/
Dt_cancellation.c782 RL(sigwait(&omask, &sig)); in cancelpoint_sigwait()
/netbsd/src/external/bsd/ntp/dist/
Dconfig.h.in853 /* sigwait() available? */
1197 /* deviant sigwait? */
Dconfigure24133 char sigwait ();
24137 return sigwait ();
24172 char sigwait ();
24176 return sigwait ();
24265 char sigwait ();
24269 return sigwait ();
/netbsd/src/usr.sbin/makemandb/
Dnostem.txt3703 sigwait
/netbsd/src/distrib/sets/lists/comp/
Dmi5077 ./usr/share/man/cat2/sigwait.0 comp-c-catman .cat
13678 ./usr/share/man/html2/sigwait.html comp-c-htmlman html
22121 ./usr/share/man/man2/sigwait.2 comp-c-man .man
/netbsd/src/external/gpl3/binutils/dist/
DChangeLog.git150116 gdb: don't pass nullptr to sigwait
150126 gdb: fall back on sigpending + sigwait if sigtimedwait is not available
150128 A call to sigwait was introduced that passes nullptr as the second
150134 On my GNU/Linux box, the man-page for sigwait doesn't mention that
150141 sigwait, and instead pass a valid int pointer. The value returned in
150146 sigwait instead on sigtimedwait on GNU/Linux, I saw no regressions.
182280 gdb: fall back on sigpending + sigwait if sigtimedwait is not available
182290 to first check which signals are pending, and then sigwait, to consume
182293 to sigpending + sigwait for the others.
182299 is defined, else use sigpending + sigwait.