Home
last modified time | relevance | path

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

/illumos-gate/usr/src/ucblib/librpcsoc/
H A Dclnt_tcp.c84 struct timeval ct_wait; member
168 ct->ct_wait.tv_usec = 0; in clnttcp_create()
234 ct->ct_wait = timeout; in clnttcp_call()
348 ct->ct_wait = *(struct timeval *)info; in clnttcp_control()
352 *(struct timeval *)info = ct->ct_wait; in clnttcp_control()
408 &readfds, NULL, NULL, &(ct->ct_wait))) { in readtcp()
/illumos-gate/usr/src/lib/libnsl/rpc/
H A Dclnt_vc.c121 int ct_wait; /* wait interval in milliseconds */ member
309 ct->ct_wait = 30000; in _clnt_vc_create_timed()
667 ct->ct_wait = __rpc_timeval_to_msec(&timeout); in clnt_vc_call()
669 timeout.tv_sec = (ct->ct_wait / 1000); in clnt_vc_call()
670 timeout.tv_usec = (ct->ct_wait % 1000) * 1000; in clnt_vc_call()
934 ct->ct_wait = __rpc_timeval_to_msec((struct timeval *)info); in clnt_vc_control()
938 ((struct timeval *)info)->tv_sec = ct->ct_wait / 1000; in clnt_vc_control()
939 ((struct timeval *)info)->tv_usec = (ct->ct_wait % 1000) * 1000; in clnt_vc_control()
1155 poll_time = ct->ct_wait; in read_vc()