18 lines
393 B
Plaintext
18 lines
393 B
Plaintext
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
menu "pthread support"
|
|
depends on !DISABLE_PTHREAD
|
|
|
|
config PTHREAD_SPINLOCKS
|
|
bool "pthread spinlock support"
|
|
default n
|
|
depends on SPINLOCK && BOARDCTL
|
|
select BOARDCTL_TESTSET
|
|
---help---
|
|
Enable support for pthread spinlocks.
|
|
|
|
endmenu # pthread support
|