Home | History | Annotate | Download | only in client

Lines Matching defs:timeo

184 	int timeo, mustflush;
192 timeo = (time_second - np->n_mtime.tv_sec) / 10;
196 printf("ncl_getattrcache: initial timeo = %d\n", timeo);
200 if ((np->n_flag & NMODIFIED) || timeo < nmp->nm_acdirmin)
201 timeo = nmp->nm_acdirmin;
202 else if (timeo > nmp->nm_acdirmax)
203 timeo = nmp->nm_acdirmax;
205 if ((np->n_flag & NMODIFIED) || timeo < nmp->nm_acregmin)
206 timeo = nmp->nm_acregmin;
207 else if (timeo > nmp->nm_acregmax)
208 timeo = nmp->nm_acregmax;
218 printf("ncl_getattrcache: age = %d; final timeo = %d\n",
219 (time_second - np->n_attrstamp), timeo);
222 if ((time_second - np->n_attrstamp) >= timeo &&