/third_party/libwebsockets/lib/misc/ |
H A D | daemonize.c | 182 signal(SIGTSTP, SIG_IGN); /* Various TTY signals */ in lws_daemonize() 183 signal(SIGTTOU, SIG_IGN); in lws_daemonize() 184 signal(SIGTTIN, SIG_IGN); in lws_daemonize() 185 signal(SIGHUP, SIG_IGN); /* Ignore hangup signal */ in lws_daemonize()
|
/third_party/musl/src/process/ |
H A D | system.c | 16 struct sigaction sa = { .sa_handler = SIG_IGN }, oldint, oldquit; in system() 31 if (oldint.sa_handler != SIG_IGN) sigaddset(&reset, SIGINT); in system() 32 if (oldquit.sa_handler != SIG_IGN) sigaddset(&reset, SIGQUIT); in system()
|
/third_party/musl/porting/liteos_a/user/src/process/ |
H A D | system.c | 16 struct sigaction sa = { .sa_handler = SIG_IGN }, oldint, oldquit; in system() 32 if (oldint.sa_handler != SIG_IGN) sigaddset(&reset, SIGINT); in system() 33 if (oldquit.sa_handler != SIG_IGN) sigaddset(&reset, SIGQUIT); in system()
|
/third_party/libunwind/libunwind/tests/ |
H A D | mapper.c | 60 signal (SIGUSR1, SIG_IGN); in main() 61 signal (SIGUSR2, SIG_IGN); in main()
|
H A D | Gtest-resume-sig.c | 109 signal (SIGUSR1, SIG_IGN); in handler() 142 signal (SIGUSR2, SIG_IGN); in handler()
|
H A D | test-ptrace-misc.c | 113 signal (SIGUSR1, SIG_IGN); in main() 114 signal (SIGUSR2, SIG_IGN); in main()
|
/third_party/ltp/testcases/kernel/syscalls/signal/ |
H A D | signal01.c | 33 {SIG_IGN, 0}, 36 {SIG_IGN, 1},
|
H A D | signal02.c | 18 TST_EXP_FAIL2((long)signal(sigs[n], SIG_IGN), EINVAL); in do_test()
|
/third_party/ntfs-3g/libfuse-lite/ |
H A D | fuse_signals.c | 53 set_one_signal_handler(SIGPIPE, SIG_IGN, 0) == -1) in fuse_set_signal_handlers() 71 set_one_signal_handler(SIGPIPE, SIG_IGN, 1); in fuse_remove_signal_handlers()
|
/third_party/nghttp2/src/ |
H A D | shrpx_signal.cc | 123 return signal_set_handler(SIG_IGN, main_proc_ign_signals); in shrpx_signal_set_main_proc_ign_handler() 131 return signal_set_handler(SIG_IGN, worker_proc_ign_signals); in shrpx_signal_set_worker_proc_ign_handler()
|
/third_party/cups-filters/backend/ |
H A D | parallel.c | 83 sigset(SIGPIPE, SIG_IGN); in main() 86 action.sa_handler = SIG_IGN; in main() 89 signal(SIGPIPE, SIG_IGN); in main() 575 sigset(SIGTERM, SIG_IGN); in run_loop() 580 action.sa_handler = SIG_IGN; in run_loop() 583 signal(SIGTERM, SIG_IGN); in run_loop()
|
H A D | serial.c | 120 sigset(SIGPIPE, SIG_IGN); in main() 123 action.sa_handler = SIG_IGN; in main() 126 signal(SIGPIPE, SIG_IGN); in main() 475 sigset(SIGTERM, SIG_IGN); in main() 480 action.sa_handler = SIG_IGN; in main() 483 signal(SIGTERM, SIG_IGN); in main()
|
/third_party/gn/infra/ |
H A D | recipes.py | 265 signal.signal(signal.SIGBREAK, signal.SIG_IGN) 266 signal.signal(signal.SIGINT, signal.SIG_IGN) 267 signal.signal(signal.SIGTERM, signal.SIG_IGN)
|
/third_party/skia/infra/bots/ |
H A D | recipes.py | 257 signal.signal(signal.SIGBREAK, signal.SIG_IGN) 258 signal.signal(signal.SIGINT, signal.SIG_IGN) 259 signal.signal(signal.SIGTERM, signal.SIG_IGN)
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/definitions/signal_h/ |
H A D | 2-4-buildonly.c | 2 Test the definition of SIG_IGN. 7 static void (*dummy) (int) = SIG_IGN;
|
/third_party/python/Lib/unittest/test/ |
H A D | test_break.py | 102 if signal.getsignal(signal.SIGINT) == signal.SIG_IGN: 152 if signal.getsignal(signal.SIGINT) == signal.SIG_IGN: 297 int_handler = signal.SIG_IGN
|
/third_party/ltp/testcases/network/stress/ns-tools/ |
H A D | ns-udpclient.c | 120 handler.sa_handler = SIG_IGN; in set_signal_flag() 253 handler.sa_handler = SIG_IGN; in main()
|
/third_party/python/Lib/multiprocessing/ |
H A D | resource_tracker.py | 182 signal.signal(signal.SIGINT, signal.SIG_IGN) 183 signal.signal(signal.SIGTERM, signal.SIG_IGN)
|
/third_party/musl/src/signal/ |
H A D | sigignore.c | 8 sa.sa_handler = SIG_IGN; in sigignore()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigset/ |
H A D | 10-1.c | 22 if (sigset(SIGKILL, SIG_IGN) == SIG_ERR) { in main()
|
H A D | 2-1.c | 9 if the value of the dist parameter is SIG_IGN. 13 SIGUSR1, this time with SIG_IGN as the value of the func parameter. 45 if (sigset(SIGUSR1, SIG_IGN) != myhandler) { in main()
|
/third_party/python/Lib/test/subprocessdata/ |
H A D | sigchild_ignore.py | 5 signal.signal(signal.SIGCHLD, signal.SIG_IGN)
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/signal/ |
H A D | 2-1.c | 9 if the value of the func parameter is SIG_IGN. 13 SIGCHLD, this time with SIG_IGN as the value of the func parameter. 39 if (signal(SIGCHLD, SIG_IGN) != myhandler) { in main()
|
H A D | 5-1.c | 47 if (signal(SIGUSR1, SIG_IGN) != SIGUSR1_handler) { in main()
|
/third_party/toybox/toys/posix/ |
H A D | nohup.c | 25 xsignal(SIGHUP, SIG_IGN); in nohup_main()
|