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 2016/06/30 22:12:10 UTC

incubator-mynewt-core git commit: slinky; increase newtmgr stack size. Coredump implied that file write was triggering NFFS garbage collection.

Repository: incubator-mynewt-core
Updated Branches:
  refs/heads/develop 067889127 -> 55c2e6e95


slinky; increase newtmgr stack size. Coredump implied that
file write was triggering NFFS garbage collection.


Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/commit/55c2e6e9
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/tree/55c2e6e9
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/diff/55c2e6e9

Branch: refs/heads/develop
Commit: 55c2e6e95421d7cad585247416edf24672184489
Parents: 0678891
Author: Marko Kiiskila <ma...@runtime.io>
Authored: Thu Jun 30 15:10:07 2016 -0700
Committer: Marko Kiiskila <ma...@runtime.io>
Committed: Thu Jun 30 15:10:07 2016 -0700

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


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/55c2e6e9/apps/slinky/src/main.c
----------------------------------------------------------------------
diff --git a/apps/slinky/src/main.c b/apps/slinky/src/main.c
index 00eec39..16cb3ac 100755
--- a/apps/slinky/src/main.c
+++ b/apps/slinky/src/main.c
@@ -77,7 +77,7 @@ os_stack_t stack2[TASK2_STACK_SIZE];
 os_stack_t shell_stack[SHELL_TASK_STACK_SIZE];
 
 #define NEWTMGR_TASK_PRIO (4)
-#define NEWTMGR_TASK_STACK_SIZE (OS_STACK_ALIGN(512))
+#define NEWTMGR_TASK_STACK_SIZE (OS_STACK_ALIGN(896))
 os_stack_t newtmgr_stack[NEWTMGR_TASK_STACK_SIZE];
 
 struct log_handler log_cbmem_handler;