2019-02-28 10:21:05 -06:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
|
|
#
|
|
|
|
|
|
|
|
menu "pthread support"
|
2019-03-04 14:22:50 -06:00
|
|
|
depends on !DISABLE_PTHREAD
|
2019-02-28 10:21:05 -06:00
|
|
|
|
|
|
|
config PTHREAD_SPINLOCKS
|
|
|
|
bool "pthread spinlock support"
|
|
|
|
default n
|
2022-05-17 04:42:37 +08:00
|
|
|
depends on SPINLOCK && (BUILD_FLAT || BOARDCTL)
|
|
|
|
select BOARDCTL_TESTSET if !BUILD_FLAT
|
2019-02-28 10:21:05 -06:00
|
|
|
---help---
|
2019-03-04 14:22:50 -06:00
|
|
|
Enable support for pthread spinlocks.
|
2019-02-28 10:21:05 -06:00
|
|
|
|
2023-07-15 16:37:22 +08:00
|
|
|
config PTHREAD_ATFORK
|
|
|
|
bool "pthread_atfork support"
|
|
|
|
default n
|
|
|
|
---help---
|
|
|
|
Enable support for pthread_atfork.
|
|
|
|
|
2019-02-28 10:21:05 -06:00
|
|
|
endmenu # pthread support
|