Home
last modified time | relevance | path

Searched refs:ct_wait (Results 1 – 2 of 2) sorted by relevance

/titanic_41/usr/src/ucblib/librpcsoc/
H A Dclnt_tcp.c86 struct timeval ct_wait; member
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))) {
/titanic_41/usr/src/lib/libnsl/rpc/
H A Dclnt_vc.c120 int ct_wait; /* wait interval in milliseconds */ member
308 ct->ct_wait = 30000; in _clnt_vc_create_timed()
674 ct->ct_wait = __rpc_timeval_to_msec(&timeout); in clnt_vc_call()
676 timeout.tv_sec = (ct->ct_wait / 1000); in clnt_vc_call()
677 timeout.tv_usec = (ct->ct_wait % 1000) * 1000; in clnt_vc_call()
952 ct->ct_wait = __rpc_timeval_to_msec((struct timeval *)info); in clnt_vc_control()
957 ((struct timeval *)info)->tv_sec = ct->ct_wait / 1000; in clnt_vc_control()
959 ((struct timeval *)info)->tv_usec = (ct->ct_wait % 1000) * 1000; in clnt_vc_control()
1194 poll_time = ct->ct_wait; in read_vc()