Kconfig 486 B

12345678910111213141516171819202122
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see the file kconfig-language.txt in the NuttX tools repository.
  4. #
  5. config FS_SHM
  6. bool "Shared memory support"
  7. default n
  8. depends on MM_SHM && EXPERIMENTAL
  9. ---help---
  10. Include support for shm_open() and shm_close.
  11. if FS_SHM
  12. config FS_SHMPATH
  13. string "Path to shared memory object storage"
  14. default "/var/shm"
  15. ---help---
  16. The path to where shared memory objects will exist in the VFS
  17. namespace.
  18. endif # FS_SHM