Home
last modified time | relevance | path

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

/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/posix/
H A Dsignal.d1427 int sigwait(const scope sigset_t*, int*);
1441 int sigwait(const scope sigset_t*, int*);
1455 int sigwait(const scope sigset_t*, int*);
1469 int sigwait(const scope sigset_t*, int*);
1493 int sigwait(const scope sigset_t*, int*);
1507 int sigwait(const scope sigset_t*, int*);
1521 int sigwait(const scope sigset_t*, int*);
1573 int sigwait(const scope sigset_t*, int*);
1587 int sigwait(const scope sigset_t*, int*);
1601 int sigwait(const scope sigset_t*, int*);
/netbsd-src/lib/libc/sys/
H A Dsigwait.c45 __weak_alias(sigwait,_sigwait)
H A DMakefile.inc12 sigqueue.c sigtimedwait.c sigwait.c sigwaitinfo.c statvfs.c swapon.c \
389 MLINKS+=sigtimedwait.2 sigwait.2
/netbsd-src/include/
H A Dsignal.h191 int sigwait (const sigset_t * __restrict, int * __restrict);
/netbsd-src/lib/libpthread/
H A Dpthread_cancelstub.c737 sigwait(const sigset_t * __restrict set, int * __restrict sig) in sigwait() function
783 __strong_alias(_sigwait, sigwait)
/netbsd-src/external/mpl/bind/dist/bin/tests/
H A Dtest_server.c193 RUNTIME_CHECK(sigwait(&sset, &sig) == 0); in setup()
H A Dtest_client.c316 RUNTIME_CHECK(sigwait(&sset, &sig) == 0);
/netbsd-src/external/bsd/libbind/dist/
H A 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().
H A 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/mpl/bind/dist/lib/isc/
H A Dapp.c
/netbsd-src/external/mpl/dhcp/bind/dist/lib/isc/
H A Dapp.c321 if (sigwait(&sset, &sig) == 0) { in isc_app_ctxrun()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/vms/
H A Dvms-crtlmap.map730 sigwait
/netbsd-src/external/gpl3/gcc/dist/gcc/config/vms/
H A Dvms-crtlmap.map730 sigwait
/netbsd-src/external/gpl3/autoconf/dist/
H A Dmaint.mk571 sigrelse sigset sigsuspend sigtimedwait sigwait sigwaitinfo
/netbsd-src/usr.sbin/makemandb/
H A Dnostem.txt3703 sigwait
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
H A Dsanitizer_common_interceptors.inc3927 INTERCEPTOR(int, sigwait, __sanitizer_sigset_t *set, int *sig) {
3929 COMMON_INTERCEPTOR_ENTER(ctx, sigwait, set, sig);
3934 int res = REAL(sigwait)(set, sig);
3938 #define INIT_SIGWAIT COMMON_INTERCEPT_FUNCTION(sigwait);
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_common_interceptors.inc4100 INTERCEPTOR(int, sigwait, __sanitizer_sigset_t *set, int *sig) {
4102 COMMON_INTERCEPTOR_ENTER(ctx, sigwait, set, sig);
4107 int res = COMMON_INTERCEPTOR_BLOCK_REAL(sigwait)(set, sig);
4111 #define INIT_SIGWAIT COMMON_INTERCEPT_FUNCTION(sigwait);
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_common_interceptors.inc4007 INTERCEPTOR(int, sigwait, __sanitizer_sigset_t *set, int *sig) {
4009 COMMON_INTERCEPTOR_ENTER(ctx, sigwait, set, sig);
4014 int res = REAL(sigwait)(set, sig);
4018 #define INIT_SIGWAIT COMMON_INTERCEPT_FUNCTION(sigwait);
/netbsd-src/external/bsd/openldap/dist/libraries/liblmdb/
H A Dmdb.c9119 sigwait(&set, &tmp); in mdb_env_copythr()
/netbsd-src/external/gpl3/binutils/dist/
H A 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.