Searched refs:SIGPOLL (Results 1 - 14 of 14) sorted by relevance

/freebsd-11-stable/contrib/ntp/include/
H A Diosignal.h7 * Some systems (MOST) define SIGPOLL == SIGIO, others SIGIO == SIGPOLL, and
8 * a few have separate SIGIO and SIGPOLL signals. This code checks for the
9 * SIGIO == SIGPOLL case at compile time.
33 # if SIGIO == SIGPOLL
36 # endif /* SIGIO == SIGPOLL */
/freebsd-11-stable/contrib/ntp/libntp/
H A Diosignal.c71 * SIGPOLL and SIGIO ROUTINES.
330 (void) signal_no_reset(SIGPOLL, sigio_handler);
346 if (sigaddset(&set, SIGPOLL))
347 msyslog(LOG_ERR, "block_io_and_alarm: sigaddset(SIGPOLL) failed: %m");
376 if (sigaddset(&set, SIGPOLL))
377 msyslog(LOG_ERR, "block_sigio: sigaddset(SIGPOLL) failed: %m");
398 if (sigaddset(&unset, SIGPOLL))
399 msyslog(LOG_ERR, "unblock_io_and_alarm: sigaddset(SIGPOLL) failed: %m");
429 if (sigaddset(&unset, SIGPOLL))
430 msyslog(LOG_ERR, "unblock_sigio: sigaddset(SIGPOLL) faile
[all...]
H A Dsyssignal.c43 # ifdef SIGPOLL
44 if (SIGPOLL == sig)
H A Dwork_thread.c654 # ifdef SIGPOLL
655 sigaddset(&block, SIGPOLL);
H A Dwork_fork.c593 signal_no_reset(SIGPOLL, SIG_DFL);
/freebsd-11-stable/contrib/wpa/wpa_supplicant/dbus/
H A Ddbus_common.c22 #ifndef SIGPOLL
25 * If we do not have SIGPOLL, try to use SIGIO instead. This is needed for
28 #define SIGPOLL SIGIO macro
202 if (sig != SIGPOLL || !priv->con)
227 /* Use SIGPOLL to break out of the eloop select() */
228 raise(SIGPOLL);
252 if (eloop_register_signal(SIGPOLL, process_wakeup_main, priv))
/freebsd-11-stable/contrib/gdb/gdb/signals/
H A Dsignals.c88 {"SIGPOLL", "Pollable event occurred"},
369 #if defined (SIGPOLL)
370 if (hostsig == SIGPOLL)
622 #if defined (SIGPOLL)
624 return SIGPOLL;
/freebsd-11-stable/contrib/gcclibs/libiberty/
H A Dstrsignal.c159 #if defined (SIGPOLL)
160 ENTRY(SIGPOLL, "SIGPOLL", "Pollable event occurred"),
/freebsd-11-stable/contrib/binutils/libiberty/
H A Dstrsignal.c159 #if defined (SIGPOLL)
160 ENTRY(SIGPOLL, "SIGPOLL", "Pollable event occurred"),
/freebsd-11-stable/contrib/apr/threadproc/unix/
H A Dsignals.c223 #ifdef SIGPOLL
224 store_desc(SIGPOLL, "Pollable event occurred");
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/
H A DHost.cpp335 #if defined(SIGPOLL)
336 #if !defined(SIGIO) || (SIGPOLL != SIGIO)
337 // Under some GNU/Linux, SIGPOLL and SIGIO are the same. Causing the build to
339 case SIGPOLL:
340 return "SIGPOLL"; // 7 pollable event ([XSR] generated, not supported)
/freebsd-11-stable/contrib/tcsh/
H A Dsh.init.c464 # if !defined(SIGPOLL) || SIGPOLL != SIGIO
473 # endif /* !SIGPOLL || SIGPOLL != SIGIO */
690 #ifdef SIGPOLL
691 if (mesg[SIGPOLL].pname == NULL) {
692 mesg[SIGPOLL].iname = "POLL";
693 mesg[SIGPOLL].pname = CSAVS(2, 63, "Pollable event occured");
695 #endif /* SIGPOLL */
/freebsd-11-stable/contrib/libbegemot/
H A Drpoll.c83 # if defined(SIGPOLL)
84 # define SIGNAL SIGPOLL
218 * Private function to block SIGPOLL or SIGIO for a short time.
/freebsd-11-stable/contrib/gdb/gdb/
H A Dproc-events.c1514 #ifdef SIGPOLL
1515 { SIGPOLL, "SIGPOLL", "Pollable event" },
1518 { SIGIO, "SIGIO", "Socket I/O possible" }, /* alias for SIGPOLL */

Completed in 114 milliseconds