1# Copyright (c) 2018 Linaro 2# 3# SPDX-License-Identifier: Apache-2.0 4 5menu "File descriptor table options" 6 7config POSIX_MAX_FDS 8 int "Maximum number of open file descriptors" 9 default 16 if WIFI_NM_WPA_SUPPLICANT 10 default 16 if POSIX_API 11 default 4 12 help 13 Maximum number of open file descriptors, this includes 14 files, sockets, special devices, etc. 15 16endmenu # "File descriptor table options" 17