| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.threads/ |
| attach-into-signal.c | 34 struct sigaction act; local 36 memset (&act, 0, sizeof(struct sigaction)); 37 act.sa_sigaction = action; 38 act.sa_flags = SA_RESTART; 39 sigaction (SIGALRM, &act, 0);
|
| attach-into-signal.c | 34 struct sigaction act; local 36 memset (&act, 0, sizeof(struct sigaction)); 37 act.sa_sigaction = action; 38 act.sa_flags = SA_RESTART; 39 sigaction (SIGALRM, &act, 0);
|
| watchpoint-fork-child.c | 44 struct sigaction act, oldact; local 49 memset (&act, 0, sizeof act); 50 act.sa_flags = SA_RESTART; 51 act.sa_handler = handler_usr1; 52 sigemptyset (&act.sa_mask); 53 i = sigaction (SIGUSR1, &act, &oldact);
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.threads/ |
| attach-into-signal.c | 34 struct sigaction act; local 36 memset (&act, 0, sizeof(struct sigaction)); 37 act.sa_sigaction = action; 38 act.sa_flags = SA_RESTART; 39 sigaction (SIGALRM, &act, 0);
|
| attach-into-signal.c | 34 struct sigaction act; local 36 memset (&act, 0, sizeof(struct sigaction)); 37 act.sa_sigaction = action; 38 act.sa_flags = SA_RESTART; 39 sigaction (SIGALRM, &act, 0);
|
| watchpoint-fork-child.c | 44 struct sigaction act, oldact; local 49 memset (&act, 0, sizeof act); 50 act.sa_flags = SA_RESTART; 51 act.sa_handler = handler_usr1; 52 sigemptyset (&act.sa_mask); 53 i = sigaction (SIGUSR1, &act, &oldact);
|
| /src/lib/libc/gen/ |
| signal.c | 72 struct sigaction act, oact; local 74 act.sa_handler = func; 75 act.sa_flags = SA_RESTART; 77 sigemptyset(&act.sa_mask); 78 sigaddset(&act.sa_mask, sig); 79 if (sigaction(sig, &act, &oact) < 0)
|
| signal.c | 72 struct sigaction act, oact; local 74 act.sa_handler = func; 75 act.sa_flags = SA_RESTART; 77 sigemptyset(&act.sa_mask); 78 sigaddset(&act.sa_mask, sig); 79 if (sigaction(sig, &act, &oact) < 0)
|
| /src/tests/lib/libc/gen/posix_spawn/ |
| h_spawnattr.c | 51 struct sigaction act; local 64 if (sigaction(SIGUSR1, NULL, &act) < 0) { 68 if (act.sa_sigaction != (void *)SIG_DFL) {
|
| h_spawnattr.c | 51 struct sigaction act; local 64 if (sigaction(SIGUSR1, NULL, &act) < 0) { 68 if (act.sa_sigaction != (void *)SIG_DFL) {
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/ |
| signest.c | 44 struct sigaction act; local 45 memset (&act, 0, sizeof act); 46 act.sa_handler = keeper; 47 act.sa_flags = SA_NODEFER; 48 sigaction (SIGSEGV, &act, NULL); 49 sigaction (SIGBUS, &act, NULL);
|
| signest.c | 44 struct sigaction act; local 45 memset (&act, 0, sizeof act); 46 act.sa_handler = keeper; 47 act.sa_flags = SA_NODEFER; 48 sigaction (SIGSEGV, &act, NULL); 49 sigaction (SIGBUS, &act, NULL);
|
| sigbpt.c | 44 struct sigaction act; local 45 memset (&act, 0, sizeof act); 46 act.sa_handler = keeper; 47 sigaction (SIGSEGV, &act, NULL); 48 sigaction (SIGBUS, &act, NULL);
|
| /src/external/gpl3/gdb.old/dist/gdbsupport/ |
| scoped_signal_handler.h | 39 struct sigaction act; local 41 act.sa_handler = handler; 42 sigemptyset (&act.sa_mask); 43 act.sa_flags = 0; 44 sigaction (SIG, &act, &m_prev_handler);
|
| scoped_signal_handler.h | 39 struct sigaction act; local 41 act.sa_handler = handler; 42 sigemptyset (&act.sa_mask); 43 act.sa_flags = 0; 44 sigaction (SIG, &act, &m_prev_handler);
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/ |
| signest.c | 44 struct sigaction act; local 45 memset (&act, 0, sizeof act); 46 act.sa_handler = keeper; 47 act.sa_flags = SA_NODEFER; 48 sigaction (SIGSEGV, &act, NULL); 49 sigaction (SIGBUS, &act, NULL);
|
| signest.c | 44 struct sigaction act; local 45 memset (&act, 0, sizeof act); 46 act.sa_handler = keeper; 47 act.sa_flags = SA_NODEFER; 48 sigaction (SIGSEGV, &act, NULL); 49 sigaction (SIGBUS, &act, NULL);
|
| sigbpt.c | 44 struct sigaction act; local 45 memset (&act, 0, sizeof act); 46 act.sa_handler = keeper; 47 sigaction (SIGSEGV, &act, NULL); 48 sigaction (SIGBUS, &act, NULL);
|
| /src/external/gpl3/gdb/dist/gdbsupport/ |
| scoped_signal_handler.h | 39 struct sigaction act; local 41 act.sa_handler = handler; 42 sigemptyset (&act.sa_mask); 43 act.sa_flags = 0; 44 sigaction (SIG, &act, &m_prev_handler);
|
| scoped_signal_handler.h | 39 struct sigaction act; local 41 act.sa_handler = handler; 42 sigemptyset (&act.sa_mask); 43 act.sa_flags = 0; 44 sigaction (SIG, &act, &m_prev_handler);
|
| /src/lib/libutil/ |
| raise_default_signal.c | 66 struct sigaction origact, act; local 74 (void)memset(&act, 0, sizeof(act)); 75 act.sa_handler = SIG_DFL; 76 act.sa_flags = 0; 77 if ((sigemptyset(&act.sa_mask) == -1) || 89 if (sigaction(sig, &act, &origact) == -1)
|
| /src/external/bsd/ntp/dist/tests/libntp/ |
| vi64ops.c | 42 vint64 act, exp; local 49 act = strtouv64(sp, &ep, 0); 51 TEST_ASSERT_TRUE(IsEqual(exp, act)); 58 vint64 act, exp; local 65 act = strtouv64(sp, &ep, 0); 66 TEST_ASSERT_TRUE(IsEqual(exp, act)); 72 vint64 act, exp; local 79 act = strtouv64(sp, &ep, 16); 80 TEST_ASSERT_TRUE(IsEqual(exp, act));
|
| /src/external/bsd/openldap/dist/libraries/liblmdb/ |
| mdb_copy.c | 36 const char *progname = argv[0], *act; local 66 act = "opening environment"; 72 act = "copying"; 80 progname, act, rc, mdb_strerror(rc));
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.trace/ |
| signal.c | 50 struct sigaction act; local 53 memset (&act, 0, sizeof act); 54 act.sa_handler = handler; 55 act.sa_flags = SA_NODEFER; 56 sigaction (SIGABRT, &act, NULL);
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.trace/ |
| signal.c | 50 struct sigaction act; local 53 memset (&act, 0, sizeof act); 54 act.sa_handler = handler; 55 act.sa_flags = SA_NODEFER; 56 sigaction (SIGABRT, &act, NULL);
|