HomeSort by: relevance | last modified time | path
    Searched defs:sigaction (Results 1 - 8 of 8) sorted by relevancy

  /src/lib/libc/compat/arch/powerpc64/sys/
compat_missing.c 42 __warn_references(sigaction,
43 "warning: reference to compatibility sigaction(); include <signal.h> to generate correct reference")
51 int sigaction(int, const struct sigaction * restrict,
52 struct sigaction * restrict);
53 int __sigaction_siginfo(int, const struct sigaction * restrict,
54 struct sigaction * restrict);
57 sigaction(int sig, const struct sigaction * restrict act, function in typeref:typename:int
58 struct sigaction * restrict oact
    [all...]
  /src/sys/sys/
signal.h 121 * Signal vector "template" used in sigaction call.
123 struct sigaction { struct
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_platform_limits_freebsd.h 298 __sanitizer_sigactionhandler_ptr sigaction; member in union:__sanitizer::__sanitizer_sigaction::__anon0ef02d5b020a
644 // For sigaction, which is a function and struct at the same time,
652 #define SIGACTION_SYMNAME sigaction
sanitizer_platform_limits_openbsd.h 241 __sanitizer_sigactionhandler_ptr sigaction; member in union:__sanitizer::__sanitizer_sigaction::__anon63caea4b030a
252 void (*sigaction)(int signo, void *info, void *ctx); member in union:__sanitizer::__sanitizer_kernel_sigaction_t::__anon63caea4b040a
370 // For sigaction, which is a function and struct at the same time,
sanitizer_platform_limits_solaris.h 264 __sanitizer_sigactionhandler_ptr sigaction; member in union:__sanitizer::__sanitizer_sigaction::__anon471bbe9d010a
280 void (*sigaction)(int signo, __sanitizer_siginfo *info, void *ctx); member in union:__sanitizer::__sanitizer_kernel_sigaction_t::__anon471bbe9d020a
486 // For sigaction, which is a function and struct at the same time,
sanitizer_platform_limits_posix.h 585 __sanitizer_sigactionhandler_ptr sigaction; member in union:__sanitizer::__sanitizer_sigaction::__anonf80764b3020a
595 __sanitizer_sigactionhandler_ptr sigaction; member in union:__sanitizer::__sanitizer_sigaction::__anonf80764b3030a
603 __sanitizer_sigactionhandler_ptr sigaction; member in union:__sanitizer::__sanitizer_sigaction::__anonf80764b3040a
616 __sanitizer_sigactionhandler_ptr sigaction; member in union:__sanitizer::__sanitizer_sigaction::__anonf80764b3050a
674 void (*sigaction)(int signo, __sanitizer_siginfo *info, void *ctx); member in union:__sanitizer::__sanitizer_kernel_sigaction_t::__anonf80764b3060a
683 void (*sigaction)(int signo, __sanitizer_siginfo *info, void *ctx); member in union:__sanitizer::__sanitizer_kernel_sigaction_t::__anonf80764b3070a
1443 // For sigaction, which is a function and struct at the same time,
1451 #define SIGACTION_SYMNAME sigaction
sanitizer_platform_limits_netbsd.h 301 __sanitizer_sigactionhandler_ptr sigaction; member in union:__sanitizer::__sanitizer_sigaction::__anon207e8fa0030a
328 void (*sigaction)(int signo, void *info, void *ctx); member in union:__sanitizer::__sanitizer_kernel_sigaction_t::__anon207e8fa0040a
2377 // For sigaction, which is a function and struct at the same time,
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_interceptors.cc 166 bool sigaction; member in struct:__tsan::SignalDesc
1908 // This code races with sigaction. Be careful to not read sa_sigaction twice.
1912 sigact ? (uptr)sigactions[sig].sigaction : (uptr)sigactions[sig].handler;
1962 CallUserSignalHandler(thr, false, true, signal->sigaction, sig,
2019 signal->sigaction = sigact;
2372 // Note: if we call REAL(sigaction) directly for any reason without proxying
2375 SCOPED_INTERCEPTOR_RAW(sigaction, sig, act, old);
2399 newact.sigaction = rtl_sigaction;
2406 int res = REAL(sigaction)(sig, act, old);
2408 uptr cb = (uptr)old->sigaction;
    [all...]

Completed in 18 milliseconds