Home
last modified time | relevance | path

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

/external/curl/tests/server/
Dutil.c561 static SIGHANDLER_T old_sigint_handler = SIG_ERR; variable
756 old_sigint_handler = signal(SIGINT, exit_signal_handler); in install_signal_handlers()
757 if(old_sigint_handler == SIG_ERR) in install_signal_handlers()
809 if(SIG_ERR != old_sigint_handler) in restore_signal_handlers()
810 (void)signal(SIGINT, old_sigint_handler); in restore_signal_handlers()
/external/openscreen/platform/impl/
Dtask_runner.cc116 const auto old_sigint_handler = std::signal(SIGINT, &OnReceivedSignal); in RunUntilSignaled() local
121 std::signal(SIGINT, old_sigint_handler); in RunUntilSignaled()