Lines Matching defs:sigq
62 } sigq = { NULL, &sigq.qe_first };
107 * Attempt to post a signal to the sigq.
119 *sigq.qe_last = e;
120 sigq.qe_last = &e->qe_next;
125 * Check the sigq for any pending signals. If any are found,
140 while ((e = sigq.qe_first) != NULL) {
147 sigq.qe_first = e->qe_next;
148 if (sigq.qe_first == NULL)
149 sigq.qe_last = &sigq.qe_first;
333 SIGQUEUE_INIT(&sigq);