Home | History | Annotate | Download | only in qemu

Lines Matching refs:act

186     struct sigaction act;
188 memset(&act, 0, sizeof(act));
189 act.sa_handler = termsig_handler;
190 sigaction(SIGINT, &act, NULL);
191 sigaction(SIGHUP, &act, NULL);
192 sigaction(SIGTERM, &act, NULL);
194 act.sa_handler = sigchld_handler;
195 act.sa_flags = SA_NOCLDSTOP;
196 sigaction(SIGCHLD, &act, NULL);
213 struct sigaction act;
214 sigfillset(&act.sa_mask);
215 act.sa_flags = 0;
216 act.sa_handler = SIG_IGN;
217 sigaction(SIGPIPE, &act, NULL);