Searched defs:sigaction (Results 1 - 18 of 18) sorted by relevance

/external/openssh/openbsd-compat/
H A Dsigact.h40 * and usually no sigaction() nor <termios.h>
67 struct sigaction struct
81 int sigaction(int sig, struct sigaction *sigact, struct sigaction *osigact);
H A Dsigact.c1 /* $OpenBSD: sigaction.c,v 1.4 2001/01/22 18:01:48 millert Exp $ */
36 /* OPENBSD ORIGINAL: lib/libcurses/base/sigaction.c */
43 /* This file provides sigaction() emulation using sigvec() */
49 sigaction(int sig, struct sigaction *sigact, struct sigaction *osigact) function
/external/bison/lib/
H A Dsigaction.c27 /* This implementation of sigaction is tailored to native Windows behavior:
49 sigaction(). We support the use of signal() within the gnulib
51 with this module should stick with only sigaction(). */
55 # error "Revisit the assumptions made in the sigaction module"
79 that signal is not currently handled by the sigaction handler. */
80 static struct sigaction volatile action_array[NSIG] /* = 0 */;
99 bookkeeping so that the user's handler may call sigaction and get
102 interrupting a sigaction() call. There is a race where any
131 sigaction (int sig, const struct sigaction *restric function
[all...]
H A Dspawni.c73 # define sigaction __sigaction macro
197 struct sigaction sa;
204 && sigaction (sig, &sa, NULL) != 0)
/external/clang/test/CodeGen/
H A Dcall.c28 struct sigaction { int (*_sa_handler)(int); }; struct
30 typedef struct sigaction sighandler_cxt;
/external/valgrind/coregrind/
H A Dm_libcsignal.c214 /* The functions sigaction, sigprocmask, sigpending and sigsuspend
243 /* A helper function for sigaction on Darwin. */
260 Int VG_(sigaction) ( Int signum, function
276 sigaction requests come from m_signals, and are not directly
510 ir = VG_(sigaction)(i, &sa, &saved_sa);
533 ir = VG_(sigaction)(i, &saved_sa2, NULL);
/external/bison/darwin-lib/
H A Dsignal.h700 /* We assume that platforms which lack the sigaction() function also lack
701 the 'struct sigaction' type, and vice versa. */
705 struct sigaction struct
730 _GL_FUNCDECL_SYS (sigaction, int, (int, const struct sigaction *restrict,
731 struct sigaction *restrict));
739 _GL_CXXALIAS_SYS (sigaction, int, (int, const struct sigaction *restrict,
740 struct sigaction *restrict));
741 _GL_CXXALIASWARN (sigaction); variable
744 # undef sigaction macro
[all...]
/external/bison/linux-lib/
H A Dsignal.h700 /* We assume that platforms which lack the sigaction() function also lack
701 the 'struct sigaction' type, and vice versa. */
705 struct sigaction struct
730 _GL_FUNCDECL_SYS (sigaction, int, (int, const struct sigaction *restrict,
731 struct sigaction *restrict));
739 _GL_CXXALIAS_SYS (sigaction, int, (int, const struct sigaction *restrict,
740 struct sigaction *restrict));
741 _GL_CXXALIASWARN (sigaction); variable
744 # undef sigaction macro
[all...]
/external/fio/os/
H A Dos-windows.h91 struct sigaction struct
106 int sigaction(int sig, const struct sigaction *act,
107 struct sigaction *oact);
/external/kernel-headers/original/uapi/asm-arm/asm/
H A Dsignal.h98 struct sigaction { struct
/external/kernel-headers/original/uapi/asm-generic/
H A Dsignal.h103 struct sigaction { struct
/external/kernel-headers/original/uapi/asm-mips/asm/
H A Dsignal.h104 struct sigaction { struct
/external/kernel-headers/original/uapi/asm-x86/asm/
H A Dsignal.h102 struct sigaction { struct
117 struct sigaction { struct
/external/fio/os/windows/
H A Dposix.c276 int sigaction(int sig, const struct sigaction *act, function
277 struct sigaction *oact)
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_platform_limits_posix.h547 void (*sigaction)(int sig, void *siginfo, void *uctx); member in union:__sanitizer::__sanitizer_sigaction::__anon3492
557 void (*sigaction)(int sig, void *siginfo, void *uctx); member in union:__sanitizer::__sanitizer_sigaction::__anon3493
565 void (*sigaction)(int sig, void *siginfo, void *uctx); member in union:__sanitizer::__sanitizer_sigaction::__anon3494
578 void (*sigaction)(int sig, void *siginfo, void *uctx); member in union:__sanitizer::__sanitizer_sigaction::__anon3495
622 void (*sigaction)(int signo, void *info, void *ctx); member in union:__sanitizer::__sanitizer_kernel_sigaction_t::__anon3496
1387 // For sigaction, which is a function and struct at the same time,
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors.cc206 bool sigaction; member in struct:__tsan::SignalDesc
1787 // This code races with sigaction. Be careful to not read sa_sigaction twice.
1841 CallUserSignalHandler(thr, false, true, signal->sigaction, sig,
1896 signal->sigaction = sigact;
1913 TSAN_INTERCEPTOR(int, sigaction, int sig, sigaction_t *act, sigaction_t *old) {
1914 // Note: if we call REAL(sigaction) directly for any reason without proxying
1917 SCOPED_INTERCEPTOR_RAW(sigaction, sig, act, old);
1945 int res = REAL(sigaction)(sig, &newact, 0);
1955 int res = sigaction(sig, &act, &old);
2553 TSAN_INTERCEPT(sigaction);
[all...]
/external/google-breakpad/src/third_party/lss/
H A Dlinux_syscall_support.h270 /* Some kernel functions (e.g. sigaction() in 2.6.23) require that the
3235 LSS_INLINE int LSS_NAME(sigaction)(int signum, function
3475 LSS_INLINE int LSS_NAME(sigaction)(int signum, function
/external/python/cpython2/Lib/lib2to3/tests/data/
H A Dinfinite_recursion.py2346 class sigaction(Structure): class in inherits:Structure
2348 sigaction._fields_ = [
2353 assert sizeof(sigaction) == 12, sizeof(sigaction)
2354 assert alignment(sigaction) == 4, alignment(sigaction)
2603 'Netscape_spki_st', 'P_PID', 'sigaction', 'sig_t',

Completed in 526 milliseconds