Home | History | Annotate | Download | only in tests

Lines Matching defs:act

16   struct sigaction act;
17 act.sa_handler=theHandler;
18 sigemptyset(&(act.sa_mask));
19 sigaddset(&(act.sa_mask), SIGCHLD);
21 sigprocmask(SIG_UNBLOCK, &(act.sa_mask), 0);
23 act.sa_flags = SA_NOCLDSTOP;
29 act.sa_flags |= SA_RESTART;
32 sigaction( SIGCHLD, &act, &oldChildHandlerData );
34 act.sa_handler=SIG_IGN;
35 sigemptyset(&(act.sa_mask));
36 sigaddset(&(act.sa_mask), SIGPIPE);
37 act.sa_flags = 0;
38 sigaction( SIGPIPE, &act, 0L);