Searched defs:ct_wait (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/ucblib/librpcsoc/
H A Dclnt_tcp.c86 struct timeval ct_wait; member in struct:ct_data
176 ct->ct_wait.tv_usec = 0;
243 ct->ct_wait = timeout;
362 ct->ct_wait = *(struct timeval *)info;
366 *(struct timeval *)info = ct->ct_wait;
423 &readfds, NULL, NULL, &(ct->ct_wait))) {
/illumos-gate/usr/src/lib/libnsl/rpc/
H A Dclnt_vc.c120 int ct_wait; /* wait interval in milliseconds */ member in struct:ct_data
308 ct->ct_wait = 30000;
674 ct->ct_wait = __rpc_timeval_to_msec(&timeout);
676 timeout.tv_sec = (ct->ct_wait / 1000);
677 timeout.tv_usec = (ct->ct_wait % 1000) * 1000;
952 ct->ct_wait = __rpc_timeval_to_msec((struct timeval *)info);
957 ((struct timeval *)info)->tv_sec = ct->ct_wait / 1000;
959 ((struct timeval *)info)->tv_usec = (ct->ct_wait % 1000) * 1000;
1194 poll_time = ct->ct_wait;

Completed in 62 milliseconds