LWIP_TCPIP_CORE_LOCKING_INPUT needs LWIP_TCPIP_CORE_LOCKING to work correctly

This commit is contained in:
goldsimon 2010-03-06 11:32:40 +00:00
parent 38fcfcdfac
commit 19ab25c861

View File

@ -175,6 +175,9 @@
#if LWIP_IGMP && !defined(LWIP_RAND) #if LWIP_IGMP && !defined(LWIP_RAND)
#error "When using IGMP, LWIP_RAND() needs to be defined to a random-function returning an u32_t random value" #error "When using IGMP, LWIP_RAND() needs to be defined to a random-function returning an u32_t random value"
#endif #endif
#if LWIP_TCPIP_CORE_LOCKING_INPUT && !LWIP_TCPIP_CORE_LOCKING
#error "When using LWIP_TCPIP_CORE_LOCKING_INPUT, LWIP_TCPIP_CORE_LOCKING must be enabled, too"
#endif
/* Compile-time checks for deprecated options. /* Compile-time checks for deprecated options.