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 06:14:21 UTC

[incubator-nuttx] branch master updated: Bump DEFAULT_TASK_STACKSIZE for the sim

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.git


The following commit(s) were added to refs/heads/master by this push:
     new ebc6627  Bump DEFAULT_TASK_STACKSIZE for the sim
ebc6627 is described below

commit ebc6627b7789e7a708ed754269f48799066a6916
Author: YAMAMOTO Takashi <ya...@midokura.com>
AuthorDate: Fri Mar 27 14:28:17 2020 +0900

    Bump DEFAULT_TASK_STACKSIZE for the sim
    
    The sim demands more stack because:
     * It's often 64-bit
     * It calls host OS libraries
---
 Kconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Kconfig b/Kconfig
index d085295..d20c362 100644
--- a/Kconfig
+++ b/Kconfig
@@ -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
 	---help---
 		The default stack size for tasks.