You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by xi...@apache.org on 2020/03/27 07:43:27 UTC

[incubator-nuttx-apps] 07/07: system/ramtest: Change the default of stack size to DEFAULT_TASK_STACKSIZE

This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git

commit 3ba85167fe5b158071daab78e6976ccb586e2a36
Author: YAMAMOTO Takashi <ya...@midokura.com>
AuthorDate: Fri Mar 27 16:14:18 2020 +0900

    system/ramtest: Change the default of stack size to DEFAULT_TASK_STACKSIZE
    
    Given what this program does, it's probably ok to allocate a few more
    kilo bytes of the stack.
---
 system/ramtest/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/system/ramtest/Kconfig b/system/ramtest/Kconfig
index 7c3d08a..6faa15d 100644
--- a/system/ramtest/Kconfig
+++ b/system/ramtest/Kconfig
@@ -24,6 +24,6 @@ config SYSTEM_RAMTEST_PRIORITY
 
 config SYSTEM_RAMTEST_STACKSIZE
 	int "RAM test stack size"
-	default 1024
+	default DEFAULT_TASK_STACKSIZE
 
 endif