From ba0c619844e037ddcc656def8db8accc1b3b2623 Mon Sep 17 00:00:00 2001 From: Sylvain Rochet Date: Sat, 23 Jun 2012 13:46:51 +0200 Subject: [PATCH] clarified PPP_INPROC_OWNTHREAD documentation --- src/netif/ppp/ppp.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/netif/ppp/ppp.h b/src/netif/ppp/ppp.h index 50ab2d1e..68d69812 100644 --- a/src/netif/ppp/ppp.h +++ b/src/netif/ppp/ppp.h @@ -59,8 +59,10 @@ #endif /** PPP_INPROC_OWNTHREAD==1: start a dedicated RX thread per PPP session. - * Default is 0: call pppos_input() for received raw characters, character - * reception is up to the port */ + * Default is 1 if PPP_INPROC_MULTITHREADED is enabled. + * If set to 0, call pppos_input() for received raw characters, character + * reception is up to the port. + */ #ifndef PPP_INPROC_OWNTHREAD #define PPP_INPROC_OWNTHREAD PPP_INPROC_MULTITHREADED #endif