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.c136 ct->ct_upcallrefs = 0; in clnt_bck_create()
582 ct->ct_upcallrefs++; in clnt_bck_svccall()
603 ct->ct_upcallrefs--; in clnt_bck_svccall()
604 if (ct->ct_upcallrefs < 0) in clnt_bck_svccall()
606 if (ct->ct_upcallrefs == 0) in clnt_bck_svccall()
607 wakeup(&ct->ct_upcallrefs); in clnt_bck_svccall()
H A Dclnt_vc.c153 ct->ct_upcallrefs = 0; in clnt_vc_create()
978 if (ct->ct_upcallrefs > 0) in clnt_vc_soupcall()
980 ct->ct_upcallrefs++; in clnt_vc_soupcall()
1247 ct->ct_upcallrefs--; in clnt_vc_soupcall()
1248 if (ct->ct_upcallrefs < 0) in clnt_vc_soupcall()
1250 if (ct->ct_upcallrefs == 0) in clnt_vc_soupcall()
1251 wakeup(&ct->ct_upcallrefs); in clnt_vc_soupcall()
1264 while (ct->ct_upcallrefs > 0) in clnt_vc_upcallsdone()
1265 (void) msleep(&ct->ct_upcallrefs, in clnt_vc_upcallsdone()
H A Dkrpc.h115 int ct_upcallrefs; /* Ref cnt of upcalls in prog. */ member