2017-02-10 23:32:55 +08:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
|
|
#
|
|
|
|
|
2017-02-11 00:04:56 +08:00
|
|
|
menu "User Work Queue Support"
|
2020-04-29 22:52:26 +08:00
|
|
|
depends on !BUILD_FLAT
|
2017-02-10 23:32:55 +08:00
|
|
|
|
2021-08-01 15:27:08 +08:00
|
|
|
config LIBC_USRWORK
|
2017-02-10 23:32:55 +08:00
|
|
|
bool "User mode worker thread"
|
|
|
|
default n
|
|
|
|
---help---
|
|
|
|
User space work queues can also be made available for deferred
|
|
|
|
processing in the NuttX kernel build.
|
|
|
|
|
2021-08-01 15:27:08 +08:00
|
|
|
if LIBC_USRWORK
|
2017-02-10 23:32:55 +08:00
|
|
|
|
2021-08-01 15:27:08 +08:00
|
|
|
config LIBC_USRWORKPRIORITY
|
2017-02-10 23:32:55 +08:00
|
|
|
int "User mode priority worker thread priority"
|
|
|
|
default 100
|
|
|
|
---help---
|
|
|
|
The execution priority of the user-mode priority worker thread. Default: 100
|
|
|
|
|
2021-08-01 15:27:08 +08:00
|
|
|
config LIBC_USRWORKSTACKSIZE
|
2017-02-10 23:32:55 +08:00
|
|
|
int "User mode worker thread stack size"
|
2020-03-27 09:51:03 +08:00
|
|
|
default DEFAULT_TASK_STACKSIZE
|
2017-02-10 23:32:55 +08:00
|
|
|
---help---
|
|
|
|
The stack size allocated for the lower priority worker thread. Default: 2K.
|
|
|
|
|
2021-08-01 15:27:08 +08:00
|
|
|
endif # LIBC_USRWORK
|
2017-02-11 00:04:56 +08:00
|
|
|
endmenu # User Work Queue Support
|