2015-07-09 00:02:18 +02:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
|
|
#
|
|
|
|
|
|
|
|
menuconfig SYSTEM_NETDB
|
|
|
|
bool "netdb interface"
|
|
|
|
default n
|
2015-07-10 22:53:58 +02:00
|
|
|
depends on LIBC_NETDB
|
2015-07-09 00:02:18 +02:00
|
|
|
|
|
|
|
if SYSTEM_NETDB
|
|
|
|
|
|
|
|
config SYSTEM_NETDB_STACKSIZE
|
|
|
|
int "netdb task stack size"
|
|
|
|
default 2048
|
|
|
|
|
|
|
|
config SYSTEM_NETDB_PRIORITY
|
|
|
|
int "netdb task priority"
|
|
|
|
default 100
|
|
|
|
|
|
|
|
endif
|