Home | History | Annotate | Download | only in qemu

Lines Matching refs:act

58     struct sigaction act;
59 sigfillset(&act.sa_mask);
60 act.sa_flags = 0;
61 act.sa_handler = SIG_IGN;
62 sigaction(SIGPIPE, &act, NULL);
77 struct sigaction act;
79 memset(&act, 0, sizeof(act));
80 act.sa_handler = termsig_handler;
81 sigaction(SIGINT, &act, NULL);
82 sigaction(SIGHUP, &act, NULL);
83 sigaction(SIGTERM, &act, NULL);
85 act.sa_handler = sigchld_handler;
86 act.sa_flags = SA_NOCLDSTOP;
87 sigaction(SIGCHLD, &act, NULL);