nuttx-apps/testing/osperf/Kconfig
yinshengkai d0f790e166 testing: add os performance measurement
Measure the performance of core system functions
such as thread switching and the time required for semaphore execution

Signed-off-by: yinshengkai <yinshengkai@xiaomi.com>
2023-08-09 14:59:41 +08:00

24 lines
546 B
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config TESTING_OSPERF
tristate "System performance profiling"
default n
---help---
Measure the performance of core system functions, such as thread
switching and the time required for semaphore execution
if TESTING_OSPERF
config TESTING_OSPERF_PRIORITY
int "OS profiling task priority"
default 100
config TESTING_OSPERF_STACKSIZE
int "OS profiling stack size"
default DEFAULT_TASK_STACKSIZE
endif