Home
last modified time | relevance | path

Searched refs:time_to_wait (Results 1 – 7 of 7) sorted by relevance

/illumos-gate/usr/src/cmd/svc/shell/
H A Dsmf_include.sh187 time_to_wait=$4
189 [ -z "$time_to_wait" ] && time_to_wait=0
192 time_to_wait=`/usr/bin/expr $time_to_wait '*' 10`
221 [ "$time_to_wait" -gt 0 -a $time_waited -ge $time_to_wait ] && \
/illumos-gate/usr/src/uts/intel/io/dktp/hba/ghd/
H A Dghd_waitq.c358 clock_t lbolt, delay_in_hz, time_to_wait; in ghd_waitq_process_and_mutex_hold() local
364 time_to_wait = delay_in_hz - in ghd_waitq_process_and_mutex_hold()
367 if (time_to_wait > 0) { in ghd_waitq_process_and_mutex_hold()
/illumos-gate/usr/src/uts/common/inet/tcp/
H A Dtcp_timers.c754 clock_t time_to_wait; in tcp_timer() local
759 time_to_wait = NSEC2MSEC(gethrtime() - in tcp_timer()
761 time_to_wait = tcp->tcp_rto - time_to_wait; in tcp_timer()
766 if (time_to_wait > msec_per_tick) { in tcp_timer()
768 TCP_TIMER_RESTART(tcp, time_to_wait); in tcp_timer()
/illumos-gate/usr/src/uts/common/sys/
H A Dddi.h89 extern void time_to_wait(clock_t *, clock_t);
/illumos-gate/usr/src/uts/common/fs/nfs/
H A Dnfs4_recovery.c1107 time_t curtime, time_to_wait; in nfs4_wait_for_grace() local
1121 time_to_wait = mi->mi_grace_wait - curtime; in nfs4_wait_for_grace()
1125 delay(SEC_TO_TICK(time_to_wait)); in nfs4_wait_for_grace()
1156 time_t curtime, time_to_wait; in nfs4_wait_for_delay() local
1178 time_to_wait = rp->r_delay_wait - curtime; in nfs4_wait_for_delay()
1182 delay(SEC_TO_TICK(time_to_wait)); in nfs4_wait_for_delay()
3368 time_t curtime, time_to_wait; in recov_throttle() local
3380 time_to_wait = rp->r_last_recov + recov_err_delay - curtime; in recov_throttle()
3382 delay(SEC_TO_TICK(time_to_wait)); in recov_throttle()
/illumos-gate/usr/src/uts/common/os/
H A Dddi.c1219 time_to_wait(clock_t *now, clock_t time) in time_to_wait() function
/illumos-gate/usr/src/stand/lib/tcp/
H A Dtcp.c4321 int32_t time_to_wait; in tcp_timer() local
4327 time_to_wait = (int32_t)(prom_gettime() - in tcp_timer()
4329 time_to_wait = tcp->tcp_rto - time_to_wait; in tcp_timer()
4330 if (time_to_wait > 0) { in tcp_timer()
4334 TCP_TIMER_RESTART(tcp, time_to_wait); in tcp_timer()