Searched refs:timo (Results 1 - 7 of 7) sorted by relevance

/darwin-on-arm/xnu/bsd/kern/
H A Dkern_synch.c321 int timo,
326 if (timo)
327 clock_interval_to_deadline(timo, NSEC_PER_SEC / hz, &abstime);
366 int timo)
370 if (timo)
371 clock_interval_to_deadline(timo, NSEC_PER_SEC / hz, &abstime);
380 int timo,
385 if (timo)
386 clock_interval_to_deadline(timo, NSEC_PER_SEC / hz, &abstime);
316 msleep0( void *chan, lck_mtx_t *mtx, int pri, const char *wmsg, int timo, int (*continuation)(int)) argument
362 tsleep( void *chan, int pri, const char *wmsg, int timo) argument
376 tsleep0( void *chan, int pri, const char *wmsg, int timo, int (*continuation)(int)) argument
H A Dtty.c1945 long slp = 0; /* XXX this should be renamed `timo'. */
2992 * timo Timeout for the sleep
3000 * msleep0:EWOULDBLOCK Timeout (timo) already expired
3010 ttysleep(struct tty *tp, void *chan, int pri, const char *wmesg, int timo) argument
3018 /* Use of msleep0() avoids conversion timo/timespec/timo */
3019 error = msleep0(chan, &tp->t_lock, pri, wmesg, timo, (int (*)(int))0);
/darwin-on-arm/xnu/bsd/nfs/
H A Dkrpc_subr.c218 int error, timo, secs; local
360 timo = 0;
383 if (timo < MAX_RESEND_DELAY)
384 timo++;
390 * Wait for up to timo seconds for a reply.
393 secs = timo;
/darwin-on-arm/xnu/bsd/netinet6/
H A Din6_rmx.c597 uint64_t timenow, timo; local
607 timo = arg.nextstop;
608 if (timo < timenow) {
614 atv.tv_sec = timo - timenow;
/darwin-on-arm/xnu/bsd/sys/
H A Dproc.h299 extern int tsleep(void *chan, int pri, const char *wmesg, int timo);
300 extern int msleep1(void *chan, lck_mtx_t *mtx, int pri, const char *wmesg, u_int64_t timo);
H A Dproc_internal.h688 extern int tsleep0(void *chan, int pri, const char *wmesg, int timo, int (*continuation)(int));
690 extern int msleep0(void *chan, lck_mtx_t *mtx, int pri, const char *wmesg, int timo, int (*continuation)(int));
/darwin-on-arm/xnu/bsd/net/
H A Dbpf.c798 bpf_sleep(struct bpf_d *d, int pri, const char *wmesg, int timo) argument
802 if(timo)
803 clock_interval_to_deadline(timo, NSEC_PER_SEC / hz, &abstime);

Completed in 38 milliseconds