Kconfig 491 B

1234567891011121314151617181920
  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. if !DISABLE_MQUEUE
  6. config FS_MQUEUE_MPATH
  7. string "Path to message queue"
  8. default "/var/mqueue"
  9. ---help---
  10. The path to where POSIX message queues will exist in the VFS namespace.
  11. config FS_MQUEUE_NPOLLWAITERS
  12. int "Maximum number of poll waiters"
  13. default 4
  14. ---help---
  15. The maximum number of waiters for the poll operation.
  16. endif # !DISABLE_MQUEUE