Lines Matching defs:sigact
53 struct sigaction sigact = {};
54 if (sigaction(signum, nullptr, &sigact)) {
58 if (sigact.sa_flags & SA_SIGINFO) {
59 if (sigact.sa_sigaction)
62 if (sigact.sa_handler != SIG_DFL && sigact.sa_handler != SIG_IGN &&
63 sigact.sa_handler != SIG_ERR)
67 sigact = {};
68 sigact.sa_sigaction = callback;
69 if (sigaction(signum, &sigact, 0)) {