Lines Matching refs:alarm
154 #define TIMEOUT 60 /*Amount of time given in alarm calls. */
181 int alarm_flag = FALSE; /*This flag indicates an alarm time out. */
297 * Set to catch the alarm signal SIGALRM.
302 "Could not set to catch the parents time out alarm.");
306 * Setting to catch the timeout alarm worked now let the children start up.
307 * Set an alarm which causes a time out on the read pipe loop.
311 (void)alarm(TIMEOUT);
316 (void)alarm(TIMEOUT);
320 (void)alarm(0); /*Reset the alarm clock. */
324 * Check the alarm flag.
433 (void)alarm(TIMEOUT);
521 * Set to catch the alarm signal SIGALRM.
525 "Could not set to catch the childs time out alarm.");
533 * Set an alarm which causes a time out on the pipe read loop.
537 (void)alarm(TIMEOUT - 40);
541 (void)alarm(TIMEOUT - 40);
545 (void)alarm(0); /*Reset the alarm clock. */
548 * Check the alarm flag.
796 * This routine handles the timeout alarm in the parent,