Files
apps/testing/stressapptest/Kconfig
buxiasen 8bc9cc40b3 testing/pm_smp: delay_yield ticks 1->2, avoid idle canot run one cycle
Change-Id: I795624e861c7e47ad4fa4cda32bd6227e117cffa
2024-11-20 19:38:18 +08:00

28 lines
769 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_STRESSAPPTEST
bool "stressapptest"
default n
help
stressapptest is a userspace memory and CPU stress test tool. It
exercises the memory and CPU subsystem stressing for cache misses,
TLB misses, memory allocation, memory freeing, etc. It has been
used to find hardware bugs, test operating system reliability, and
test system stability.
http://people.redhat.com/~fche/stressapptest/
if TESTING_STRESSAPPTEST
config TESTING_STRESSAPPTEST_PRIORITY
int "Priority of stressapptest process"
default 100
config TESTING_STRESSAPPTEST_STACKSIZE
int "Stack size of stressapptest process"
default 8192
endif