From 6c7eef7ac0ae1f773f4208ecbeb02948ce1a99a7 Mon Sep 17 00:00:00 2001 From: Dirk Ziegelmeier Date: Wed, 27 Jul 2016 13:14:31 +0200 Subject: [PATCH] More documentation updates --- src/core/init.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/core/init.c b/src/core/init.c index 72e297d6..ab11c576 100644 --- a/src/core/init.c +++ b/src/core/init.c @@ -45,14 +45,17 @@ * *not* *from* *interrupt* *context*. You can allocate a @ref pbuf in interrupt * context and put them into a queue which is processed from mainloop.\n * Call sys_check_timeouts() periodically in the mainloop.\n - * Porting: implement all functions in @ref sys_time and @ref sys_prot. + * Porting: implement all functions in @ref sys_time and @ref sys_prot.\n + * You can only use @ref callbackstyle_api in this mode. * * @defgroup lwip_os OS mode (TCPIP thread) * @ingroup lwip * Use this mode if you run an OS on your system. It is recommended to * use an RTOS that correctly handles priority inversion and * to use LWIP_TCPIP_CORE_LOCKING.\n - * Porting: implement all functions in @ref sys_layer. + * Porting: implement all functions in @ref sys_layer.\n + * You can use @ref callbackstyle_api together with \#define tcpip_callback, + * and all @ref threadsafe_api. */ #include "lwip/opt.h"