Skip to content

Commit

Permalink
kernel: increase main stack size for ztest on ARC
Browse files Browse the repository at this point in the history
stack has been on the edge when using ztest, use 1024 for ARC as well.

Fixes #71797

Signed-off-by: Anas Nashif <[email protected]>
  • Loading branch information
nashif authored and aescolar committed Apr 24, 2024
1 parent b8b33be commit 297ad51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kernel/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ config SCHED_CPU_MASK_PIN_ONLY
config MAIN_STACK_SIZE
int "Size of stack for initialization and main thread"
default 2048 if COVERAGE_GCOV
default 512 if ZTEST && !(RISCV || X86 || ARM)
default 512 if ZTEST && !(RISCV || X86 || ARM || ARC)
default 1024
help
When the initialization is complete, the thread executing it then
Expand Down

0 comments on commit 297ad51

Please sign in to comment.