HomeSort by relevance Sort by last modified time
    Searched refs:sa_new (Results 1 - 3 of 3) sorted by null

  /external/ltp/testcases/kernel/syscalls/sigsuspend/
sigsuspend01.c 85 struct sigaction sa_new; /* struct to hold signal info */ variable in typeref:struct:sigaction
176 sa_new.sa_handler = sig_handler;
177 if (sigaction(SIGALRM, &sa_new, 0) == -1) {
  /external/ltp/testcases/kernel/syscalls/sigprocmask/
sigprocmask01.c 93 struct sigaction sa_new; /* struct to hold signal info */ variable in typeref:struct:sigaction
227 sa_new.sa_handler = sig_handler;
228 if (sigaction(SIGINT, &sa_new, 0) == -1) {
  /external/libdaemon/libdaemon/
dfork.c 139 struct sigaction sa_old, sa_new; local
143 memset(&sa_new, 0, sizeof(sa_new));
144 sa_new.sa_handler = sigchld;
145 sa_new.sa_flags = SA_RESTART;
157 if (sigaction(SIGCHLD, &sa_new, &sa_old) < 0) {

Completed in 141 milliseconds