Lines Matching defs:tout
84 struct timeval tdone, tcur, ttrans, twait, tout;
138 mstotvround(&tout, maxmsec);
139 timeradd(&tdone, &tout, &tdone); /* when we give up */
143 tout.tv_sec = 0;
144 tout.tv_usec = 0;
180 timersub(&ttrans, &tcur, &tout);
181 if (tout.tv_sec < 0)
182 tout.tv_sec = 0;
184 count = poll(set, 1, tout.tv_sec * 1000 + tout.tv_usec / 1000);