Home | History | Annotate | Download | only in rtl

Lines Matching defs:sigaction

206   bool sigaction;
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);