You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by ma...@apache.org on 2015/11/26 00:56:29 UTC

[4/7] incubator-mynewt-larva git commit: Adjust luatest stack size to be 8k instead of 32k.

Adjust luatest stack size to be 8k instead of 32k.


Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-larva/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-larva/commit/52e3cf31
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-larva/tree/52e3cf31
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-larva/diff/52e3cf31

Branch: refs/heads/master
Commit: 52e3cf31952b7918e06572cb971b11a2c6c87716
Parents: 110883b
Author: Marko Kiiskila <ma...@runtime.io>
Authored: Wed Nov 25 15:46:29 2015 -0800
Committer: Marko Kiiskila <ma...@runtime.io>
Committed: Wed Nov 25 15:46:29 2015 -0800

----------------------------------------------------------------------
 project/luatest/src/main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-larva/blob/52e3cf31/project/luatest/src/main.c
----------------------------------------------------------------------
diff --git a/project/luatest/src/main.c b/project/luatest/src/main.c
index 44e0d10..05282bd 100755
--- a/project/luatest/src/main.c
+++ b/project/luatest/src/main.c
@@ -32,7 +32,7 @@ int init_tasks(void);
 
 /* Shell */
 #define SHELL_TASK_PRIO      (8)
-#define SHELL_TASK_STACK_SIZE (OS_STACK_ALIGN(8192))
+#define SHELL_TASK_STACK_SIZE (OS_STACK_ALIGN(1024))
 static os_stack_t shell_stack[SHELL_TASK_STACK_SIZE];
 static struct shell_cmd lua_shell_cmd;