Rename lwip_sys_timers_get_next_timout() to sys_timeouts_get_next_timeout()

This commit is contained in:
Dirk Ziegelmeier
2018-01-11 09:53:07 +01:00
parent c257b56a39
commit b6b14438b7
3 changed files with 6 additions and 6 deletions

View File

@@ -121,7 +121,7 @@ static u32_t current_timeout_due_time;
#if LWIP_TESTMODE
struct sys_timeo**
lwip_sys_timers_get_next_timout(void)
sys_timeouts_get_next_timeout(void)
{
return &next_timeout;
}

View File

@@ -115,7 +115,7 @@ void sys_check_timeouts(void);
u32_t sys_timeouts_sleeptime(void);
#if LWIP_TESTMODE
struct sys_timeo** lwip_sys_timers_get_next_timout(void);
struct sys_timeo** sys_timeouts_get_next_timeout(void);
void lwip_cyclic_timer(void *arg);
#endif