nuttx/fs/shm/Kconfig
Xiang Xiao ea4a276eb0 shm: Rename FS_SHMPATH to FS_SHM_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

23 lines
491 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_SHM
bool "Shared memory support"
default n
depends on MM_SHM && EXPERIMENTAL
---help---
Include support for shm_open() and shm_close.
if FS_SHM
config FS_SHM_VFS_PATH
string "Path to shared memory object storage"
default "/var/shm"
---help---
The path to where shared memory objects will exist in the VFS
namespace.
endif # FS_SHM