Lines Matching refs:tout
496 tval_t tout; in poll_dispatch() local
527 if((tout = tims[tfd[0]].when - now) < 0) in poll_dispatch()
528 tout = 0; in poll_dispatch()
530 tout = INFTIM; in poll_dispatch()
532 tout = 0; in poll_dispatch()
535 fprintf(stderr, "rpoll -- selecting with tout=%u", tout); in poll_dispatch()
539 ret = poll(pfd, regs_used, tout == INFTIM ? INFTIM : (tout / 1000)); in poll_dispatch()
546 if(tout != INFTIM) { in poll_dispatch()
547 tv.tv_sec = tout / 1000000; in poll_dispatch()
548 tv.tv_usec = tout % 1000000; in poll_dispatch()
553 SELECT_CAST(&nxset), (tout==INFTIM) ? NULL : &tv); in poll_dispatch()