17 lines
397 B
Plaintext
17 lines
397 B
Plaintext
# Copyright (c) 2018 Linaro
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menu "File descriptor table options"
|
|
|
|
config POSIX_MAX_FDS
|
|
int "Maximum number of open file descriptors"
|
|
default 16 if WIFI_NM_WPA_SUPPLICANT
|
|
default 16 if POSIX_API
|
|
default 4
|
|
help
|
|
Maximum number of open file descriptors, this includes
|
|
files, sockets, special devices, etc.
|
|
|
|
endmenu # "File descriptor table options"
|