incubator-nuttx/fs/shm/Kconfig

23 lines
505 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_SHMFS
bool "Shared memory support"
default n
select ARCH_VMA_MAPPING if BUILD_KERNEL
---help---
Include support for shm_open() and shm_close.
if FS_SHMFS
config FS_SHMFS_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_SHMFS