๐Ÿ“ฆ apache / nuttx

๐Ÿ“„ Kconfig ยท 21 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#

if !DISABLE_MQUEUE

config FS_MQUEUE_VFS_PATH
	string "Path to message queue"
	default "/var/mqueue"
	---help---
		The path to where POSIX message queues will exist in the VFS namespace.

config FS_MQUEUE_NPOLLWAITERS
	int "Maximum number of poll waiters"
	default 4
	---help---
		The maximum number of waiters for the poll operation.

endif # !DISABLE_MQUEUE