Home
last modified time | relevance | path

Searched refs:ct_upcallrefs (Results 1 – 3 of 3) sorted by relevance

/freebsd/sys/rpc/
H A Dclnt_bck.c137 ct->ct_upcallrefs = 0; in clnt_bck_create()
585 ct->ct_upcallrefs++; in clnt_bck_svccall()
606 ct->ct_upcallrefs--; in clnt_bck_svccall()
607 if (ct->ct_upcallrefs < 0) in clnt_bck_svccall()
609 if (ct->ct_upcallrefs == 0) in clnt_bck_svccall()
610 wakeup(&ct->ct_upcallrefs); in clnt_bck_svccall()
H A Dclnt_vc.c157 ct->ct_upcallrefs = 0; in clnt_vc_create()
967 if (ct->ct_upcallrefs > 0) in clnt_vc_soupcall()
969 ct->ct_upcallrefs++; in clnt_vc_soupcall()
1236 ct->ct_upcallrefs--; in clnt_vc_soupcall()
1237 if (ct->ct_upcallrefs < 0) in clnt_vc_soupcall()
1239 if (ct->ct_upcallrefs == 0) in clnt_vc_soupcall()
1240 wakeup(&ct->ct_upcallrefs); in clnt_vc_soupcall()
1253 while (ct->ct_upcallrefs > 0) in clnt_vc_upcallsdone()
1254 (void) msleep(&ct->ct_upcallrefs, in clnt_vc_upcallsdone()
H A Dkrpc.h118 int ct_upcallrefs; /* Ref cnt of upcalls in prog. */ member