HomeSort by: relevance | last modified time | path
    Searched defs:t_ticks (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/netinet/
dccp_tfrc.c 274 long t_ticks; local in function:tfrc_set_send_timer
286 t_ticks = (t_temp.tv_usec + 1000000 * t_temp.tv_sec) / (1000000 / hz);
287 if (t_ticks == 0) t_ticks = 1;
290 "TFRC scheduled send timer to expire in %ld ticks (hz=%lu)\n", t_ticks, (unsigned long)hz));
292 callout_reset(&cb->ch_stimer, t_ticks, tfrc_time_send, cb);
dccp_tfrc.c 274 long t_ticks; local in function:tfrc_set_send_timer
286 t_ticks = (t_temp.tv_usec + 1000000 * t_temp.tv_sec) / (1000000 / hz);
287 if (t_ticks == 0) t_ticks = 1;
290 "TFRC scheduled send timer to expire in %ld ticks (hz=%lu)\n", t_ticks, (unsigned long)hz));
292 callout_reset(&cb->ch_stimer, t_ticks, tfrc_time_send, cb);
dccp_tfrc.c 274 long t_ticks; local in function:tfrc_set_send_timer
286 t_ticks = (t_temp.tv_usec + 1000000 * t_temp.tv_sec) / (1000000 / hz);
287 if (t_ticks == 0) t_ticks = 1;
290 "TFRC scheduled send timer to expire in %ld ticks (hz=%lu)\n", t_ticks, (unsigned long)hz));
292 callout_reset(&cb->ch_stimer, t_ticks, tfrc_time_send, cb);

Completed in 38 milliseconds