mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2025-03-21 04:20:48 +00:00
fixed bug #34884: sys_msleep() body needs to be surrounded with '#ifndef sys_msleep'
This commit is contained in:
parent
f0b0a3760c
commit
c4f3b8818a
@ -49,6 +49,10 @@ HISTORY
|
|||||||
|
|
||||||
++ Bugfixes:
|
++ Bugfixes:
|
||||||
|
|
||||||
|
2011-11-23: Simon Goldschmidt
|
||||||
|
* sys.c: fixed bug #34884: sys_msleep() body needs to be surrounded with
|
||||||
|
'#ifndef sys_msleep'
|
||||||
|
|
||||||
2011-11-22: Simon Goldschmidt
|
2011-11-22: Simon Goldschmidt
|
||||||
* netif.c, etharp.h/.c: fixed bug #34684: Clear the arp table cache when
|
* netif.c, etharp.h/.c: fixed bug #34684: Clear the arp table cache when
|
||||||
netif is brought down
|
netif is brought down
|
||||||
|
@ -45,6 +45,7 @@
|
|||||||
|
|
||||||
#if !NO_SYS
|
#if !NO_SYS
|
||||||
|
|
||||||
|
#ifndef sys_msleep
|
||||||
/**
|
/**
|
||||||
* Sleep for some ms. Timeouts are NOT processed while sleeping.
|
* Sleep for some ms. Timeouts are NOT processed while sleeping.
|
||||||
*
|
*
|
||||||
@ -62,5 +63,6 @@ sys_msleep(u32_t ms)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#endif /* sys_msleep */
|
||||||
|
|
||||||
#endif /* !NO_SYS */
|
#endif /* !NO_SYS */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user