Searched defs:timo (Results 1 - 4 of 4) sorted by relevance

/osnet-11/usr/src/lib/libsocket/inet/
H A Drexec.c64 int s, timo = 1, s3; local
104 if (errno == ECONNREFUSED && timo <= 16) {
106 (void) sleep(timo);
107 timo *= 2;
H A Drcmd.c99 int s, timo = 1; local
224 if (errno == ECONNREFUSED && timo <= 16) {
225 (void) sleep(timo);
226 timo *= 2;
/osnet-11/usr/src/lib/libc/port/aio/
H A Dposix_aio.c346 __aio_suspend(void **list, int nent, const timespec_t *timo, int largefile) argument
351 timespec_t twait; /* copy of timo for internal calculations */
375 if (timo) {
376 if (timo->tv_sec < 0 || timo->tv_nsec < 0 ||
377 timo->tv_nsec >= NANOSEC) {
382 if (timo->tv_sec > 0 || timo->tv_nsec > 0) {
449 list, nent, timo, -1);
484 hrtend = hrtstart + (hrtime_t)timo
[all...]
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/krb5/os/
H A Dsendto_kdc.c592 struct timeval now, *timo; local
600 timo = 0;
602 timo = &out->end_time;
617 timo);
618 *sret = select(out->max, &out->rfds, &out->wfds, &out->xfds, timo);

Completed in 49 milliseconds