2017-02-10 16:32:55 +01:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
|
|
#
|
|
|
|
|
2017-02-10 17:04:56 +01:00
|
|
|
menu "User Work Queue Support"
|
2019-04-29 22:52:05 +02:00
|
|
|
depends on BUILD_PROTECTED || BUILD_KERNEL
|
2017-02-10 16:32:55 +01:00
|
|
|
|
|
|
|
config LIB_USRWORK
|
|
|
|
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.
|
|
|
|
|
|
|
|
if LIB_USRWORK
|
|
|
|
|
|
|
|
config LIB_USRWORKPRIORITY
|
|
|
|
int "User mode priority worker thread priority"
|
|
|
|
default 100
|
|
|
|
---help---
|
|
|
|
The execution priority of the user-mode priority worker thread. Default: 100
|
|
|
|
|
|
|
|
config LIB_USRWORKSTACKSIZE
|
|
|
|
int "User mode worker thread stack size"
|
2020-03-27 02:51:03 +01:00
|
|
|
default DEFAULT_TASK_STACKSIZE
|
2017-02-10 16:32:55 +01:00
|
|
|
---help---
|
|
|
|
The stack size allocated for the lower priority worker thread. Default: 2K.
|
|
|
|
|
|
|
|
endif # LIB_USRWORK
|
2017-02-10 17:04:56 +01:00
|
|
|
endmenu # User Work Queue Support
|