Home
last modified time | relevance | path

Searched refs:next_timeout (Results 1 – 6 of 6) sorted by relevance

/Zephyr-Core-2.7.6/subsys/task_wdt/
Dtask_wdt.c56 int64_t next_timeout; /* timeout in absolute ticks of this channel */ in schedule_next_timeout() local
60 next_timeout = current_ticks + in schedule_next_timeout()
64 next_timeout = INT64_MAX; in schedule_next_timeout()
70 channels[id].timeout_abs_ticks < next_timeout) { in schedule_next_timeout()
72 next_timeout = channels[id].timeout_abs_ticks; in schedule_next_timeout()
78 k_timer_start(&timer, K_TIMEOUT_ABS_TICKS(next_timeout), K_FOREVER); in schedule_next_timeout()
/Zephyr-Core-2.7.6/kernel/
Dtimeout.c67 static int32_t next_timeout(void) in next_timeout() function
137 int32_t next_time = next_timeout(); in z_add_timeout()
144 sys_clock_set_timeout(next_timeout(), false); in z_add_timeout()
210 ret = next_timeout(); in z_get_next_timeout_expiry()
218 int next_to = next_timeout(); in z_set_timeout_expiry()
282 sys_clock_set_timeout(next_timeout(), false); in sys_clock_announce()
/Zephyr-Core-2.7.6/subsys/net/l2/ethernet/lldp/
Dlldp.c162 int32_t next_timeout; in lldp_manage_timeouts() local
168 next_timeout = timeout - (lldp->tx_timer_start + in lldp_manage_timeouts()
171 return abs(next_timeout); in lldp_manage_timeouts()
183 uint32_t next_timeout; in lldp_tx_timeout() local
185 next_timeout = lldp_manage_timeouts(current, timeout); in lldp_tx_timeout()
186 if (next_timeout < timeout_update) { in lldp_tx_timeout()
187 timeout_update = next_timeout; in lldp_tx_timeout()
/Zephyr-Core-2.7.6/subsys/net/ip/
Dipv4_autoconf.c304 uint32_t next_timeout; in ipv4_autoconf_timeout() local
306 next_timeout = ipv4_autoconf_manage_timeouts(current, timeout); in ipv4_autoconf_timeout()
307 if (next_timeout < timeout_update) { in ipv4_autoconf_timeout()
308 timeout_update = next_timeout; in ipv4_autoconf_timeout()
Ddhcpv4.c643 uint32_t next_timeout; in dhcpv4_timeout() local
645 next_timeout = dhcpv4_manage_timers(iface, now); in dhcpv4_timeout()
646 if (next_timeout < timeout_update) { in dhcpv4_timeout()
647 timeout_update = next_timeout; in dhcpv4_timeout()
/Zephyr-Core-2.7.6/doc/releases/
Drelease-notes-2.4.rst930 * :github:`28414` - kernel/timeout: next_timeout() is returning negative number of ticks