Searched refs:SA_RESTART (Results 1 - 25 of 45) sorted by relevance

12

/freebsd-9.3-release/crypto/heimdal/lib/roken/
H A Dsignal.c70 #ifdef SA_RESTART
71 saNew.sa_flags |= SA_RESTART;
/freebsd-9.3-release/lib/libc/gen/
H A Dsiginterrupt.c57 sa.sa_flags &= ~SA_RESTART;
60 sa.sa_flags |= SA_RESTART;
H A Dsignal.c57 sa.sa_flags |= SA_RESTART;
/freebsd-9.3-release/contrib/diff/lib/
H A Dcmpbuf.c28 #ifndef SA_RESTART
30 # define SA_RESTART SA_INTERRUPT macro
32 # define SA_RESTART 0 macro
108 older hosts without SA_RESTART. It also accommodates
112 if (! SA_RESTART && errno == EINTR)
/freebsd-9.3-release/contrib/sendmail/libsm/
H A Dsignal.c43 # if defined(SA_RESTART) || (!defined(SYS5SIGNALS) && !defined(BSD4_3))
45 # endif /* defined(SA_RESTART) || (!defined(SYS5SIGNALS) && !defined(BSD4_3)) */
52 # ifdef SA_RESTART
56 n.sa_flags = SA_RESTART|SA_SIGINFO;
59 n.sa_flags = SA_RESTART;
64 # else /* SA_RESTART */
90 # endif /* SA_RESTART */
/freebsd-9.3-release/contrib/ncurses/ncurses/tty/
H A Dlib_tstp.c106 * SA_RESTART flag that forces the right behavior. Thus, this code
111 * sigaction(2) without SA_RESTART) may have a problem. Possible
205 #ifdef SA_RESTART
206 act.sa_flags |= SA_RESTART;
207 #endif /* SA_RESTART */
294 #ifdef SA_RESTART
298 new_act.sa_flags |= SA_RESTART;
299 #endif /* SA_RESTART */
366 #ifdef SA_RESTART
367 new_sigaction.sa_flags |= SA_RESTART;
[all...]
/freebsd-9.3-release/contrib/libreadline/
H A Dsignals.c76 #ifndef SA_RESTART
77 # define SA_RESTART 0 macro
255 act.sa_flags = (sig == SIGWINCH) ? SA_RESTART : 0;
340 #if defined (HAVE_POSIX_SIGNALS) && defined (SA_RESTART)
342 handler with SA_RESTART, SIGALRM will cause reads to be restarted
345 if (oh != (SigHandler *)SIG_DFL && (old_alrm.sa_flags & SA_RESTART))
/freebsd-9.3-release/contrib/bmake/
H A Dsigcompat.c127 #ifndef SA_RESTART
128 # define SA_RESTART 2 macro
131 # define SV_INTERRUPT SA_RESTART
H A DMakefile111 CFLAGS+= -DSIGNAL_FLAGS=SA_RESTART
H A Dutil.c383 sa.sa_flags = SA_RESTART;
/freebsd-9.3-release/tools/regression/sockets/sblock/
H A Dsblock.c162 if (sa.sa_flags & SA_RESTART)
164 sa.sa_flags &= ~SA_RESTART;
/freebsd-9.3-release/contrib/ntp/libntp/
H A Dsyssignal.c22 # ifdef SA_RESTART
23 # define Z_SA_RESTART SA_RESTART
/freebsd-9.3-release/lib/libkse/test/
H A Dsigwait_d.c146 act.sa_flags = SA_RESTART;
229 act.sa_flags = SA_RESTART;
H A Dsigsuspend_d.c180 act.sa_flags = SA_RESTART;
/freebsd-9.3-release/contrib/diff/src/
H A Dsystem.h217 #ifndef SA_RESTART
219 # define SA_RESTART SA_INTERRUPT macro
221 # define SA_RESTART 0 macro
/freebsd-9.3-release/contrib/pf/libevent/
H A Dsignal.c123 sa.sa_flags |= SA_RESTART;
/freebsd-9.3-release/sys/sys/
H A Dsignal.h322 #define SA_RESTART 0x0002 /* restart system call on signal return */ macro
387 #define SV_INTERRUPT SA_RESTART /* same bit, opposite sense */
/freebsd-9.3-release/contrib/tnftp/src/
H A Dprogressbar.c435 #if defined(SA_RESTART) /* 4.4BSD, Posix(?), SVR4 */
436 act.sa_flags = restartable ? SA_RESTART : 0;
440 #error "system must have SA_RESTART or SA_INTERRUPT"
/freebsd-9.3-release/lib/libkse/thread/
H A Dthr_sig.c373 act.sa_flags = SA_RESTART;
466 act.sa_flags = SA_RESTART;
936 restart = _thread_sigact[sig - 1].sa_flags & SA_RESTART;
1017 * early regardless of SA_RESTART:
1211 _thread_sigact[SIGINFO - 1].sa_flags = SA_SIGINFO | SA_RESTART;
1213 act.sa_flags = SA_SIGINFO | SA_RESTART;
/freebsd-9.3-release/sys/compat/svr4/
H A Dsvr4_signal.c194 bsa->sa_flags |= SA_RESTART;
220 if ((bsa->sa_flags & SA_RESTART) != 0)
364 nbsa.sa_flags = SA_RESTART;
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dremote-fileio.c433 #if defined (HAVE_SIGACTION) && defined (SA_RESTART)
443 #if defined (HAVE_SIGACTION) && defined (SA_RESTART)
456 #if defined (HAVE_SIGACTION) && defined (SA_RESTART)
469 #if defined (HAVE_SIGACTION) && defined (SA_RESTART)
/freebsd-9.3-release/contrib/ngatm/sscop/
H A Dsscop_main.c233 sa.sa_flags = SA_RESTART;
/freebsd-9.3-release/sys/compat/linux/
H A Dlinux_signal.c107 bsa->sa_flags |= SA_RESTART;
134 if (bsa->sa_flags & SA_RESTART)
/freebsd-9.3-release/sys/i386/ibcs2/
H A Dibcs2_signal.c279 sa.sa_flags |= SA_RESTART;
/freebsd-9.3-release/contrib/ntp/sntp/libevent/
H A Dsignal.c255 sa.sa_flags |= SA_RESTART;

Completed in 363 milliseconds

12