Home | History | Annotate | Download | only in qemu

Lines Matching refs:act

1416     struct sigaction act;
1419 sigfillset(&act.sa_mask);
1420 act.sa_flags = 0;
1421 act.sa_handler = host_alarm_handler;
1423 sigaction(SIGIO, &act, NULL);
1517 struct sigaction act;
1519 sigfillset(&act.sa_mask);
1520 act.sa_flags = 0;
1521 act.sa_handler = host_alarm_handler;
1523 sigaction(SIGALRM, &act, NULL);
1594 struct sigaction act;
1599 sigfillset(&act.sa_mask);
1600 act.sa_flags = 0;
1601 act.sa_handler = host_alarm_handler;
1603 sigaction(SIGALRM, &act, NULL);
4774 struct sigaction act;
4776 memset(&act, 0, sizeof(act));
4777 act.sa_handler = termsig_handler;
4778 sigaction(SIGINT, &act, NULL);
4779 sigaction(SIGHUP, &act, NULL);
4780 sigaction(SIGTERM, &act, NULL);
4782 act.sa_handler = sigchld_handler;
4783 act.sa_flags = SA_NOCLDSTOP;
4784 sigaction(SIGCHLD, &act, NULL);
4967 struct sigaction act;
4968 sigfillset(&act.sa_mask);
4969 act.sa_flags = 0;
4970 act.sa_handler = SIG_IGN;
4971 sigaction(SIGPIPE, &act, NULL);