nuttx/fs/mqueue/Kconfig
Xiang Xiao 938a995c92 mqueue: Rename FS_MQUEUE_MPATH to FS_MQUEUE_VFS_PATH
align with other similiar config which suffix with _VFS_PATH

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
2022-02-05 23:58:01 +01:00

21 lines
494 B
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
if !DISABLE_MQUEUE
config FS_MQUEUE_VFS_PATH
string "Path to message queue"
default "/var/mqueue"
---help---
The path to where POSIX message queues will exist in the VFS namespace.
config FS_MQUEUE_NPOLLWAITERS
int "Maximum number of poll waiters"
default 4
---help---
The maximum number of waiters for the poll operation.
endif # !DISABLE_MQUEUE