From: arighi Date: Wed, 3 Nov 2010 10:02:20 +0000 (+0000) Subject: lwIP: remove dependency on semaphore and add dependency on heap X-Git-Tag: 2.6.0~5^2~24 X-Git-Url: https://codewiz.org/gitweb?p=bertos.git;a=commitdiff_plain;h=c347afb9fd4924095e6cc2fa828d18b901cf3d57 lwIP: remove dependency on semaphore and add dependency on heap lwIP no longer uses BeRTOS semaphores, but it implements a custom "mutex" primitive. TODO: consider to move this "mutex" implementation into a more generic place to make it usable by other modules. Add the dependency on heap: lwIP threads need the heap to allocate their stacks. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@4496 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/bertos/net/lwip.h b/bertos/net/lwip.h index 3e2c5ed7..d07e311f 100644 --- a/bertos/net/lwip.h +++ b/bertos/net/lwip.h @@ -35,7 +35,7 @@ * * $WIZ$ module_name = "lwip" * $WIZ$ module_configuration = "bertos/cfg/cfg_lwip.h" - * $WIZ$ module_depends = "kern", "signal", "msg", "semaphores", "event", "eth" + * $WIZ$ module_depends = "kern", "signal", "msg", "event", "eth", "heap" */ #ifndef NET_LWIP_H