nuttx-apps/benchmarks/osperf/Kconfig
chenrun1 e6c3930b2d apps:Move the performance tools to benchmark.
1.ramspeed
2.cachespeed
3.osperf
4.iozone
5.superPI

Signed-off-by: chenrun1 <chenrun1@xiaomi.com>
2024-04-08 14:11:31 +08:00

24 lines
554 B
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config BENCHMARK_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 BENCHMARK_OSPERF
config BENCHMARK_OSPERF_PRIORITY
int "OS profiling task priority"
default 100
config BENCHMARK_OSPERF_STACKSIZE
int "OS profiling stack size"
default DEFAULT_TASK_STACKSIZE
endif