2023-06-26 11:30:45 +02:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
|
|
#
|
|
|
|
|
2023-11-06 05:17:22 +01:00
|
|
|
config BENCHMARK_OSPERF
|
2023-06-26 11:30:45 +02:00
|
|
|
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
|
|
|
|
|
2023-11-06 05:17:22 +01:00
|
|
|
if BENCHMARK_OSPERF
|
2023-06-26 11:30:45 +02:00
|
|
|
|
2023-11-06 05:17:22 +01:00
|
|
|
config BENCHMARK_OSPERF_PRIORITY
|
2023-06-26 11:30:45 +02:00
|
|
|
int "OS profiling task priority"
|
|
|
|
default 100
|
|
|
|
|
2023-11-06 05:17:22 +01:00
|
|
|
config BENCHMARK_OSPERF_STACKSIZE
|
2023-06-26 11:30:45 +02:00
|
|
|
int "OS profiling stack size"
|
|
|
|
default DEFAULT_TASK_STACKSIZE
|
|
|
|
|
|
|
|
endif
|