nuttx-apps/testing/getprime/Kconfig
YAMAMOTO Takashi c9c1d2bbc6 Change the default of stack size configs to DEFAULT_TASK_STACKSIZE
Where:
 * Under examples and testing
 * And the default value is less than 2048

Using a bit more memory for examples and tests should not
be a critical problem.
2020-03-27 02:43:11 -05:00

31 lines
714 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_GETPRIME
tristate "getprime example"
default n
---help---
Enable the getprime example. This program is used to check multi
thread performance mainly for SMP (but not limited to)
if TESTING_GETPRIME
config TESTING_GETPRIME_PROGNAME
string "Program name"
default "getprime"
---help---
This is the name of the program that will be used when the NSH ELF
program is installed.
config TESTING_GETPRIME_PRIORITY
int "getprime task priority"
default 50
config TESTING_GETPRIME_STACKSIZE
int "getprime stack size"
default DEFAULT_TASK_STACKSIZE
endif