mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-11-16 14:11:02 +00:00
Fixed bug #33544 (warning in mem.c in lwip 1.4.0 with NO_SYS=1)
This commit is contained in:
parent
1b79ac1160
commit
49e16fcbe9
@ -6,6 +6,10 @@ HISTORY
|
|||||||
|
|
||||||
++ New features:
|
++ New features:
|
||||||
|
|
||||||
|
2011-06-26: Simon Goldschmidt (patch by Cameron Gutman)
|
||||||
|
* tcp.c, tcp_out.c: bug #33604: added some more asserts to check that
|
||||||
|
pcb->state != LISTEN
|
||||||
|
|
||||||
2011-05-14: Simon Goldschmidt (patch by Stéphane Lesage)
|
2011-05-14: Simon Goldschmidt (patch by Stéphane Lesage)
|
||||||
* tcpip.c/.h: patch #7449 allow tcpip callback from interrupt with static
|
* tcpip.c/.h: patch #7449 allow tcpip callback from interrupt with static
|
||||||
memory message
|
memory message
|
||||||
|
@ -190,7 +190,9 @@ static struct mem *ram_end;
|
|||||||
static struct mem *lfree;
|
static struct mem *lfree;
|
||||||
|
|
||||||
/** concurrent access protection */
|
/** concurrent access protection */
|
||||||
|
#if !NO_SYS
|
||||||
static sys_mutex_t mem_mutex;
|
static sys_mutex_t mem_mutex;
|
||||||
|
#endif
|
||||||
|
|
||||||
#if LWIP_ALLOW_MEM_FREE_FROM_OTHER_CONTEXT
|
#if LWIP_ALLOW_MEM_FREE_FROM_OTHER_CONTEXT
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user