HomeSort by relevance Sort by last modified time
    Searched refs:act (Results 151 - 175 of 1251) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/
3-23.c 10 calling sigaction with a null act argument does not change the
16 3. Call sigaction with a null act
34 struct sigaction act; local
37 act.sa_handler = handler;
38 act.sa_flags = 0;
39 sigemptyset(&act.sa_mask);
40 if (sigaction(SIGURG, &act, 0) == -1) {
3-24.c 10 calling sigaction with a null act argument does not change the
16 3. Call sigaction with a null act
34 struct sigaction act; local
37 act.sa_handler = handler;
38 act.sa_flags = 0;
39 sigemptyset(&act.sa_mask);
40 if (sigaction(SIGVTALRM, &act, 0) == -1) {
3-25.c 10 calling sigaction with a null act argument does not change the
16 3. Call sigaction with a null act
34 struct sigaction act; local
37 act.sa_handler = handler;
38 act.sa_flags = 0;
39 sigemptyset(&act.sa_mask);
40 if (sigaction(SIGXCPU, &act, 0) == -1) {
3-26.c 10 calling sigaction with a null act argument does not change the
16 3. Call sigaction with a null act
34 struct sigaction act; local
37 act.sa_handler = handler;
38 act.sa_flags = 0;
39 sigemptyset(&act.sa_mask);
40 if (sigaction(SIGXFSZ, &act, 0) == -1) {
3-3.c 10 calling sigaction with a null act argument does not change the
16 3. Call sigaction with a null act
34 struct sigaction act; local
37 act.sa_handler = handler;
38 act.sa_flags = 0;
39 sigemptyset(&act.sa_mask);
40 if (sigaction(SIGBUS, &act, 0) == -1) {
3-4.c 10 calling sigaction with a null act argument does not change the
16 3. Call sigaction with a null act
34 struct sigaction act; local
37 act.sa_handler = handler;
38 act.sa_flags = 0;
39 sigemptyset(&act.sa_mask);
40 if (sigaction(SIGCHLD, &act, 0) == -1) {
3-5.c 10 calling sigaction with a null act argument does not change the
16 3. Call sigaction with a null act
34 struct sigaction act; local
37 act.sa_handler = handler;
38 act.sa_flags = 0;
39 sigemptyset(&act.sa_mask);
40 if (sigaction(SIGCONT, &act, 0) == -1) {
3-6.c 10 calling sigaction with a null act argument does not change the
16 3. Call sigaction with a null act
34 struct sigaction act; local
37 act.sa_handler = handler;
38 act.sa_flags = 0;
39 sigemptyset(&act.sa_mask);
40 if (sigaction(SIGFPE, &act, 0) == -1) {
3-7.c 10 calling sigaction with a null act argument does not change the
16 3. Call sigaction with a null act
34 struct sigaction act; local
37 act.sa_handler = handler;
38 act.sa_flags = 0;
39 sigemptyset(&act.sa_mask);
40 if (sigaction(SIGHUP, &act, 0) == -1) {
3-8.c 10 calling sigaction with a null act argument does not change the
16 3. Call sigaction with a null act
34 struct sigaction act; local
37 act.sa_handler = handler;
38 act.sa_flags = 0;
39 sigemptyset(&act.sa_mask);
40 if (sigaction(SIGILL, &act, 0) == -1) {
3-9.c 10 calling sigaction with a null act argument does not change the
16 3. Call sigaction with a null act
34 struct sigaction act; local
37 act.sa_handler = handler;
38 act.sa_flags = 0;
39 sigemptyset(&act.sa_mask);
40 if (sigaction(SIGINT, &act, 0) == -1) {
4-1.c 48 struct sigaction act; local
50 act.sa_handler = handler;
51 act.sa_flags = 0;
52 sigemptyset(&act.sa_mask);
53 sigaddset(&act.sa_mask, SIGKILL);
54 if (sigaction(SIGABRT, &act, 0) == -1) {
4-10.c 48 struct sigaction act; local
50 act.sa_handler = handler;
51 act.sa_flags = 0;
52 sigemptyset(&act.sa_mask);
53 sigaddset(&act.sa_mask, SIGKILL);
54 if (sigaction(SIGPIPE, &act, 0) == -1) {
4-11.c 48 struct sigaction act; local
50 act.sa_handler = handler;
51 act.sa_flags = 0;
52 sigemptyset(&act.sa_mask);
53 sigaddset(&act.sa_mask, SIGKILL);
54 if (sigaction(SIGQUIT, &act, 0) == -1) {
4-12.c 48 struct sigaction act; local
50 act.sa_handler = handler;
51 act.sa_flags = 0;
52 sigemptyset(&act.sa_mask);
53 sigaddset(&act.sa_mask, SIGKILL);
54 if (sigaction(SIGSEGV, &act, 0) == -1) {
4-13.c 48 struct sigaction act; local
50 act.sa_handler = handler;
51 act.sa_flags = 0;
52 sigemptyset(&act.sa_mask);
53 sigaddset(&act.sa_mask, SIGKILL);
54 if (sigaction(SIGTERM, &act, 0) == -1) {
4-14.c 48 struct sigaction act; local
50 act.sa_handler = handler;
51 act.sa_flags = 0;
52 sigemptyset(&act.sa_mask);
53 sigaddset(&act.sa_mask, SIGKILL);
54 if (sigaction(SIGTSTP, &act, 0) == -1) {
4-15.c 48 struct sigaction act; local
50 act.sa_handler = handler;
51 act.sa_flags = 0;
52 sigemptyset(&act.sa_mask);
53 sigaddset(&act.sa_mask, SIGKILL);
54 if (sigaction(SIGTTIN, &act, 0) == -1) {
4-16.c 48 struct sigaction act; local
50 act.sa_handler = handler;
51 act.sa_flags = 0;
52 sigemptyset(&act.sa_mask);
53 sigaddset(&act.sa_mask, SIGKILL);
54 if (sigaction(SIGTTOU, &act, 0) == -1) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/templates/
template_8-1.in 41 struct sigaction act;
43 act.sa_handler = %%MYSIG%%_handler;
44 act.sa_flags = 0;
45 sigemptyset(&act.sa_mask);
46 sigaddset(&act.sa_mask, %%MYSIG2%%);
47 if (sigaction(%%MYSIG%%, &act, 0) == -1) {
53 act.sa_handler = %%MYSIG2%%_handler;
54 act.sa_flags = 0;
55 sigemptyset(&act.sa_mask);
56 if (sigaction(%%MYSIG2%%, &act, 0) == -1)
    [all...]
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sighold/
1-1.c 31 struct sigaction act; local
33 act.sa_handler = handler;
34 act.sa_flags = 0;
35 sigemptyset(&act.sa_mask);
36 if (sigaction(SIGABRT, &act, 0) == -1) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigignore/
1-1.c 31 struct sigaction act; local
33 act.sa_handler = handler;
34 act.sa_flags = 0;
35 sigemptyset(&act.sa_mask);
36 if (sigaction(SIGABRT, &act, 0) == -1) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigset/
1-1.c 38 struct sigaction act; local
39 act.sa_handler = myhandler;
40 act.sa_flags = 0;
41 sigemptyset(&act.sa_mask);
43 if (sigaction(SIGCHLD, &act, 0) != 0) {
2-1.c 36 struct sigaction act; local
37 act.sa_flags = 0;
38 act.sa_handler = myhandler;
39 sigemptyset(&act.sa_mask);
41 if (sigaction(SIGUSR1, &act, 0) != 0) {
9-1.c 27 struct sigaction act; local
28 act.sa_flags = 0;
29 act.sa_handler = myhandler;
30 sigemptyset(&act.sa_mask);
32 if (sigaction(SIGUSR1, &act, 0) != 0) {

Completed in 227 milliseconds

1 2 3 4 5 67 8 91011>>