Home
last modified time | relevance | path

Searched refs:IgnoreSignalAction (Results 1 – 1 of 1) sorted by relevance

/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerUtilDarwin.cpp51 static struct sigaction IgnoreSignalAction; in ExecuteCommand() local
53 memset(&IgnoreSignalAction, 0, sizeof(IgnoreSignalAction)); in ExecuteCommand()
54 IgnoreSignalAction.sa_handler = SIG_IGN; in ExecuteCommand()
56 if (sigaction(SIGINT, &IgnoreSignalAction, &OldSigIntAction) == -1) { in ExecuteCommand()
61 if (sigaction(SIGQUIT, &IgnoreSignalAction, &OldSigQuitAction) == -1) { in ExecuteCommand()