kconfig: Rename the TEST_EXTRA stack size option to align with the rest

All stack sizes should end with STACK_SIZE.

Signed-off-by: Carles Cufi <carles.cufi@nordicsemi.no>
This commit is contained in:
Carles Cufi
2022-02-17 17:09:09 +01:00
committed by Anas Nashif
parent 4b8f1c04ab
commit e83a13aabf
124 changed files with 136 additions and 136 deletions

View File

@@ -16,7 +16,7 @@
*/
struct k_thread test_thread;
#define NUM_STACKS 3
#define STEST_STACKSIZE (512 + CONFIG_TEST_EXTRA_STACKSIZE)
#define STEST_STACKSIZE (512 + CONFIG_TEST_EXTRA_STACK_SIZE)
K_THREAD_STACK_DEFINE(user_stack, STEST_STACKSIZE);
K_THREAD_STACK_ARRAY_DEFINE(user_stack_array, NUM_STACKS, STEST_STACKSIZE);
K_KERNEL_STACK_DEFINE(kern_stack, STEST_STACKSIZE);