mirror of
https://github.com/apache/nuttx.git
synced 2026-08-20 13:08:26 +00:00
net: limit NET_NACTIVESOCKETS to 4 when enable DEFAULT_SMALL
Change-Id: Iac28b59227f84c4df0d81d75f34aabad39191f5b Signed-off-by: Jiuzhu Dong <dongjiuzhu1@xiaomi.com>
This commit is contained in:
parent
c1c478538f
commit
e2c717d1fd
1 changed files with 2 additions and 1 deletions
|
|
@ -7,7 +7,8 @@ menu "Socket Support"
|
|||
|
||||
config NET_NACTIVESOCKETS
|
||||
int "Max socket operations"
|
||||
default 16
|
||||
default 16 if !DEFAULT_SMALL
|
||||
default 4 if DEFAULT_SMALL
|
||||
---help---
|
||||
Maximum number of concurrent socket operations (recv, send,
|
||||
connection monitoring, etc.). Default: 16
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue