Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ config DEFAULT_SMALL

config DEFAULT_TASK_STACKSIZE
int "The default stack size for tasks"
default 8192 if ARCH_SIM
default 2048
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we need change to:
default 2048 if !ARCH_SIM

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why?
i believe kconfig interprets this as "otherwise, 2048"

---help---
The default stack size for tasks.
Expand Down