Lines Matching defs:wait
128 struct timeval now, wait;
169 timersub(&now, &lastupdate, &wait);
173 wait.tv_sec = 0;
176 if (quit_time > 0 && wait.tv_sec > quit_time) {
179 getprogname(), (unsigned long)wait.tv_sec);
266 } else if (wait.tv_sec >= STALLTIME) {
308 struct timeval now, td, wait;
367 timersub(&now, &lastupdate, &wait);
368 if (wait.tv_sec >= STALLTIME)
394 * Set the SIGALRM interval timer for wait seconds, 0 to disable.
397 alarmtimer(int wait)
401 itv.it_value.tv_sec = wait;