HomeSort by: relevance | last modified time | path
    Searched defs:oldact (Results 1 - 13 of 13) sorted by relevancy

  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
signals-state-child.c 58 struct sigaction oldact; local
62 res = sigaction (i, NULL, &oldact);
79 if (oldact.sa_handler == SIG_DFL)
81 else if (oldact.sa_handler == SIG_IGN)
88 fprintf (out, "%c", sigismember (&oldact.sa_mask, m) ? '1' : '0');
90 fprintf (out, ", sa_flags=%d", oldact.sa_flags);
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.threads/
watchpoint-fork-child.c 44 struct sigaction act, oldact; local
53 i = sigaction (SIGUSR1, &act, &oldact);
129 i = sigaction (SIGUSR1, &oldact, NULL);
  /src/external/gpl3/gdb/dist/gdbsupport/
signals-state-save-restore.cc 48 struct sigaction *oldact = &original_signal_actions[i]; local
50 res = sigaction (i, NULL, oldact);
65 && oldact->sa_handler != SIG_DFL
66 && oldact->sa_handler != SIG_IGN)
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
signals-state-child.c 58 struct sigaction oldact; local
62 res = sigaction (i, NULL, &oldact);
79 if (oldact.sa_handler == SIG_DFL)
81 else if (oldact.sa_handler == SIG_IGN)
88 fprintf (out, "%c", sigismember (&oldact.sa_mask, m) ? '1' : '0');
90 fprintf (out, ", sa_flags=%d", oldact.sa_flags);
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.threads/
watchpoint-fork-child.c 44 struct sigaction act, oldact; local
53 i = sigaction (SIGUSR1, &act, &oldact);
129 i = sigaction (SIGUSR1, &oldact, NULL);
  /src/external/gpl3/gdb.old/dist/gdbsupport/
signals-state-save-restore.cc 48 struct sigaction *oldact = &original_signal_actions[i]; local
50 res = sigaction (i, NULL, oldact);
65 && oldact->sa_handler != SIG_DFL
66 && oldact->sa_handler != SIG_IGN)
  /src/external/gpl2/xcvs/dist/lib/
nanosleep.c 93 struct sigaction oldact, newact; local
98 sigaction (SIGCONT, NULL, &oldact);
99 if (oldact.sa_handler != SIG_IGN)
  /src/external/gpl3/gcc/dist/libgfortran/io/
fbuf.c 250 size_t oldact, oldpos; local
254 oldact = u->fbuf->act;
258 if (oldpos + *len > oldact)
261 (long unsigned) oldpos + *len - oldact,
262 (long unsigned) oldact);
263 readlen = sread (u->s, u->fbuf->buf + oldact, oldpos + *len - oldact);
266 *len = oldact - oldpos + readlen;
268 u->fbuf->act = oldact + readlen;
  /src/external/gpl3/gcc.old/dist/libgfortran/io/
fbuf.c 250 size_t oldact, oldpos; local
254 oldact = u->fbuf->act;
258 if (oldpos + *len > oldact)
261 (long unsigned) oldpos + *len - oldact,
262 (long unsigned) oldact);
263 readlen = sread (u->s, u->fbuf->buf + oldact, oldpos + *len - oldact);
266 *len = oldact - oldpos + readlen;
268 u->fbuf->act = oldact + readlen;
  /src/external/bsd/ntp/dist/libntp/
machines.c 220 struct sigaction oldact; /* SIGALRM state saved by setitimer */ member in struct:__anon7434
248 sigaction(SIGALRM, &setitimer_mpe_ctx.oldact, NULL);
253 if (setitimer_mpe_ctx.oldact.sa_handler != SIG_DFL &&
254 setitimer_mpe_ctx.oldact.sa_handler != SIG_ERR &&
255 setitimer_mpe_ctx.oldact.sa_handler != SIG_IGN)
256 (*setitimer_mpe_ctx.oldact.sa_handler)(SIGALRM);
303 if (sigaction(SIGALRM, NULL, &setitimer_mpe_ctx.oldact) < 0) {
311 newact.sa_mask = setitimer_mpe_ctx.oldact.sa_mask;
312 newact.sa_flags = setitimer_mpe_ctx.oldact.sa_flags;
  /src/external/bsd/openldap/dist/contrib/slapd-modules/nssov/nss-pam-ldapd/
tio.c 343 struct sigaction act, oldact; local
351 if (sigaction(SIGPIPE, &act, &oldact) != 0)
357 if (sigaction(SIGPIPE, &oldact, NULL) != 0)
  /src/external/bsd/ppp/dist/pppd/
main.c 1523 struct sigaction act, oldact; local
1554 sigaction(sig, &act, &oldact);
1555 sigaction(sig, &oldact, NULL);
  /src/sys/external/bsd/compiler_rt/dist/lib/msan/tests/
msan_test.cc 2509 struct sigaction oldact = {}; local
2526 sigaction(SIGPROF, &act, &oldact);
2527 EXPECT_FALSE(oldact.sa_flags & SA_SIGINFO);
2528 EXPECT_EQ(SIG_DFL, oldact.sa_handler);
2533 sigaction(SIGPROF, &act, &oldact);
2534 EXPECT_FALSE(oldact.sa_flags & SA_SIGINFO);
2535 EXPECT_EQ(SIG_IGN, oldact.sa_handler);
2540 sigaction(SIGPROF, &act, &oldact);
2541 EXPECT_TRUE(oldact.sa_flags & SA_SIGINFO);
2542 EXPECT_EQ(&SigactionHandler, oldact.sa_sigaction)
    [all...]

Completed in 48 milliseconds