Lines Matching full:act
47 struct sigaction act; in test_clone3_clear_sighand() local
60 act.sa_handler = nop_handler; in test_clone3_clear_sighand()
61 ret = sigemptyset(&act.sa_mask); in test_clone3_clear_sighand()
66 act.sa_flags = 0; in test_clone3_clear_sighand()
69 ret = sigaction(SIGUSR1, &act, NULL); in test_clone3_clear_sighand()
72 "%s - sigaction(SIGUSR1, &act, NULL) failed\n", in test_clone3_clear_sighand()
76 ret = sigaction(SIGUSR2, &act, NULL); in test_clone3_clear_sighand()
79 "%s - sigaction(SIGUSR2, &act, NULL) failed\n", in test_clone3_clear_sighand()
90 ret = sigaction(SIGUSR1, NULL, &act); in test_clone3_clear_sighand()
94 if (act.sa_handler != SIG_DFL) in test_clone3_clear_sighand()
97 ret = sigaction(SIGUSR2, NULL, &act); in test_clone3_clear_sighand()
101 if (act.sa_handler != SIG_DFL) in test_clone3_clear_sighand()