Home | History | Annotate | Download | only in kqueue

Lines Matching defs:seconds

45 check_timespec(struct timespec *ts, time_t seconds)
47 time_t upper = seconds;
58 if (ts->tv_sec < seconds - 1 ||
59 (ts->tv_sec == seconds - 1 && ts->tv_nsec < 500000000))
67 seconds - 1, upper);
110 * Make sure TIME1_TOTAL_SEC seconds have
128 * Make sure TIME2_TOTAL_SEC seconds have
203 * Start a 500ms timer, sleep for 5 seconds, and check
218 * Modify to a 4 second timer, sleep for 5 seconds, and check
239 * Start a 500ms timer, sleep for 2 seconds.
249 * Set the SAME timer, sleep for 2 seconds.
279 time_t seconds;
287 seconds = ots.tv_sec + TIME1_TOTAL_SEC;
290 NOTE_ABSTIME | NOTE_SECONDS, seconds, NULL);
298 * delivered anywhere between 4.5-6.whatever seconds later.