nuttx/fs/semaphore/Kconfig
Xiang Xiao c6beb35e9e semaphore: Rename FS_NAMED_SEMPATH to FS_NAMED_SEMAPHORES_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
485 B
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config FS_NAMED_SEMAPHORES
bool "Named semaphore support"
default n
---help---
Include support for named semaphores.
if FS_NAMED_SEMAPHORES
config FS_NAMED_SEMAPHORES_VFS_PATH
string "Path to semaphore storage"
default "/var/lock"
---help---
The path to where named semaphores will exist in the VFS namespace.
endif # FS_NAMED_SEMAPHORES