/kernel/liteos_a/testsuites/unittest/extended/signal/full/ |
D | signal_test_020.cpp | 52 struct sigaction act; in TestSigSuspend() 60 sigaction(SIGINT, &act, nullptr); in TestSigSuspend() 61 sigaction(SIGQUIT, &act, nullptr); in TestSigSuspend() 62 sigaction(SIGUSR1, &act, nullptr); in TestSigSuspend() 63 sigaction(SIGALRM, &act, nullptr); in TestSigSuspend() 172 struct sigaction act; in TestSigSuspend() 179 sigaction(SIGINT, &act, nullptr); in TestSigSuspend() 180 sigaction(SIGQUIT, &act, nullptr); in TestSigSuspend() 181 sigaction(SIGUSR1, &act, nullptr); in TestSigSuspend()
|
D | It_ipc_sigaction_001.cpp | 44 struct sigaction act, oldact; in Testcase() 51 ret = sigaction(SIGCHLD, &act, &oldact); in Testcase() 70 ret = sigaction(SIGCHLD, &oldact, NULL); in Testcase()
|
/kernel/liteos_a/testsuites/unittest/extended/signal/smoke/ |
D | signal_test_024.cpp | 51 struct sigaction curAction, oldAction; in TestSigaction() 60 retValue = sigaction(SIGINT, &curAction, NULL); in TestSigaction() 71 retValue = sigaction(SIGINT, &curAction, &oldAction); in TestSigaction() 76 retValue = sigaction(SIGINT, &curAction, NULL); in TestSigaction() 80 retValue = sigaction(SIGALRM, &oldAction, NULL); in TestSigaction()
|
/kernel/linux/linux-5.10/tools/testing/selftests/clone3/ |
D | clone3_clear_sighand.c | 51 struct sigaction act; in test_clone3_clear_sighand() 73 ret = sigaction(SIGUSR1, &act, NULL); in test_clone3_clear_sighand() 80 ret = sigaction(SIGUSR2, &act, NULL); in test_clone3_clear_sighand() 94 ret = sigaction(SIGUSR1, NULL, &act); in test_clone3_clear_sighand() 101 ret = sigaction(SIGUSR2, NULL, &act); in test_clone3_clear_sighand()
|
/kernel/linux/linux-5.10/tools/testing/selftests/x86/ |
D | ioperm.c | 28 struct sigaction sa; in sethandler() 33 if (sigaction(sig, &sa, 0)) in sethandler() 40 struct sigaction sa; in clearhandler() 44 if (sigaction(sig, &sa, 0)) in clearhandler()
|
D | sysret_rip.c | 45 struct sigaction sa; in sethandler() 50 if (sigaction(sig, &sa, 0)) in sethandler() 56 struct sigaction sa; in clearhandler() 60 if (sigaction(sig, &sa, 0)) in clearhandler()
|
D | iopl.c | 28 struct sigaction sa; in sethandler() 33 if (sigaction(sig, &sa, 0)) in sethandler() 40 struct sigaction sa; in clearhandler() 44 if (sigaction(sig, &sa, 0)) in clearhandler()
|
D | single_step_syscall.c | 39 struct sigaction sa; in sethandler() 44 if (sigaction(sig, &sa, 0)) in sethandler() 50 struct sigaction sa; in clearhandler() 54 if (sigaction(sig, &sa, 0)) in clearhandler()
|
/kernel/linux/linux-5.10/arch/x86/um/ |
D | bugs_32.c | 24 struct sigaction old, new; in arch_check_bugs() 32 sigaction(SIGILL, &new, &old); in arch_check_bugs() 41 sigaction(SIGILL, &old, &new); in arch_check_bugs()
|
/kernel/linux/linux-5.10/tools/bpf/bpftool/ |
D | tracelog.c | 127 const struct sigaction act = { in do_tracelog() 145 sigaction(SIGHUP, &act, NULL); in do_tracelog() 146 sigaction(SIGINT, &act, NULL); in do_tracelog() 147 sigaction(SIGTERM, &act, NULL); in do_tracelog()
|
/kernel/linux/linux-5.10/tools/testing/selftests/powerpc/mm/ |
D | wild_bctr.c | 126 struct sigaction segv = { in test_wild_bctr() 130 struct sigaction usr2 = { in test_wild_bctr() 135 FAIL_IF(sigaction(SIGSEGV, &segv, NULL)); in test_wild_bctr() 136 FAIL_IF(sigaction(SIGUSR2, &usr2, NULL)); in test_wild_bctr()
|
D | bad_accesses.c | 70 struct sigaction sig; in test() 73 sig = (struct sigaction) { in test() 78 FAIL_IF(sigaction(SIGSEGV, &sig, NULL) != 0); in test()
|
D | subpage_prot.c | 151 struct sigaction act = { in test_anon() 165 sigaction(SIGSEGV, &act, NULL); in test_anon() 187 struct sigaction act = { in test_file() 202 sigaction(SIGSEGV, &act, NULL); in test_file()
|
/kernel/linux/linux-5.10/tools/testing/selftests/powerpc/signal/ |
D | signal_tm.c | 44 struct sigaction act; in test_signal_tm() 49 if (sigaction(SIGUSR1, &act, NULL) < 0) { in test_signal_tm() 53 if (sigaction(SIGALRM, &act, NULL) < 0) { in test_signal_tm()
|
D | signal.c | 39 struct sigaction act; in test_signal() 46 if (sigaction(SIGUSR1, &act, NULL) < 0) { in test_signal() 50 if (sigaction(SIGALRM, &act, NULL) < 0) { in test_signal()
|
D | sig_sc_double_restart.c | 99 struct sigaction act; in test_restart() 106 if (sigaction(SIGUSR1, &act, NULL) == -1) { in test_restart() 114 if (sigaction(SIGUSR2, &act, NULL) == -1) { in test_restart()
|
/kernel/linux/linux-5.10/tools/testing/selftests/powerpc/tm/ |
D | tm-trap.c | 255 struct sigaction trap_sa; in tm_trap_test() 261 sigaction(SIGTRAP, &trap_sa, NULL); in tm_trap_test() 263 struct sigaction usr1_sa; in tm_trap_test() 267 sigaction(SIGUSR1, &usr1_sa, NULL); in tm_trap_test()
|
D | tm-signal-context-force-tm.c | 110 struct sigaction usr_sa, seg_sa; in tm_trap_test() 153 sigaction(SIGUSR1, &usr_sa, NULL); in tm_trap_test() 155 sigaction(SIGSEGV, &seg_sa, NULL); in tm_trap_test()
|
D | tm-signal-sigreturn-nt.c | 32 struct sigaction trap_sa; in tm_signal_sigreturn_nt() 39 sigaction(SIGTRAP, &trap_sa, NULL); in tm_signal_sigreturn_nt()
|
D | tm-sigreturn.c | 54 struct sigaction sa; in tm_sigreturn() 64 if (sigaction(SIGSEGV, &sa, NULL)) in tm_sigreturn()
|
/kernel/linux/linux-5.10/tools/testing/selftests/powerpc/ |
D | harness.c | 95 static struct sigaction sig_action = { 111 if (sigaction(SIGINT, &sig_action, NULL)) { in test_harness() 117 if (sigaction(SIGALRM, &sig_action, NULL)) { in test_harness()
|
/kernel/linux/linux-5.10/arch/x86/um/os-Linux/ |
D | task_size.c | 70 struct sigaction sa, old; in os_get_top_address() 93 if (sigaction(SIGSEGV, &sa, &old)) { in os_get_top_address() 133 if (sigaction(SIGSEGV, &old, NULL)) { in os_get_top_address()
|
/kernel/linux/linux-5.10/tools/perf/tests/ |
D | bp_signal.c | 166 struct sigaction sa; in test__bp_signal() 170 memset(&sa, 0, sizeof(struct sigaction)); in test__bp_signal() 174 if (sigaction(SIGIO, &sa, NULL) < 0) { in test__bp_signal() 180 if (sigaction(SIGUSR1, &sa, NULL) < 0) { in test__bp_signal()
|
D | bp_signal_overflow.c | 65 struct sigaction sa; in test__bp_signal_overflow() 70 memset(&sa, 0, sizeof(struct sigaction)); in test__bp_signal_overflow() 74 if (sigaction(SIGIO, &sa, NULL) < 0) { in test__bp_signal_overflow()
|
/kernel/liteos_m/kal/posix/src/ |
D | signal.c | 90 int sigaction(int sig, const struct sigaction *act, struct sigaction *oldact) in sigaction() function
|