Lines Matching defs:act
196 struct sigaction act;
291 act.sa_handler = kill_handler;
292 (void) sigemptyset(&act.sa_mask);
293 act.sa_flags = 0;
294 (void) sigaction(SIGQUIT, &act, NULL);
295 (void) sigaction(SIGINT, &act, NULL);
296 (void) sigaction(SIGTERM, &act, NULL);
355 struct sigaction act;
368 (void) sigemptyset(&act.sa_mask);
369 act.sa_flags = 0;
370 act.sa_handler = alarm_handler;
371 (void) sigaction(SIGALRM, &act, NULL);
372 act.sa_handler = work_handler;
373 (void) sigaction(SIGHUP, &act, NULL);
374 act.sa_handler = thaw_handler;
375 (void) sigaction(SIGTHAW, &act, NULL);