You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by cc...@apache.org on 2016/11/01 20:34:09 UTC

incubator-mynewt-core git commit: Increase stack size for some app tasks.

Repository: incubator-mynewt-core
Updated Branches:
  refs/heads/develop dd37e5886 -> 879d71d67


Increase stack size for some app tasks.

There was a stack overflow during the write to the split status config
setting.


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/879d71d6
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/tree/879d71d6
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/diff/879d71d6

Branch: refs/heads/develop
Commit: 879d71d674302d2628d49e45361940b72fbd7697
Parents: dd37e58
Author: Christopher Collins <cc...@apache.org>
Authored: Tue Nov 1 13:33:52 2016 -0700
Committer: Christopher Collins <cc...@apache.org>
Committed: Tue Nov 1 13:33:52 2016 -0700

----------------------------------------------------------------------
 apps/slinky/src/main.c     | 2 +-
 apps/slinky_oic/src/main.c | 2 +-
 apps/spitest/src/main.c    | 2 +-
 apps/splitty/src/main.c    | 2 +-
 apps/timtest/src/main.c    | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/879d71d6/apps/slinky/src/main.c
----------------------------------------------------------------------
diff --git a/apps/slinky/src/main.c b/apps/slinky/src/main.c
index 500653b..abda19c 100755
--- a/apps/slinky/src/main.c
+++ b/apps/slinky/src/main.c
@@ -64,7 +64,7 @@ static struct os_task task2;
 
 /* Task 3 */
 #define TASK3_PRIO (10)
-#define TASK3_STACK_SIZE    OS_STACK_ALIGN(384)
+#define TASK3_STACK_SIZE    OS_STACK_ALIGN(512)
 static struct os_task task3;
 
 static struct log my_log;

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/879d71d6/apps/slinky_oic/src/main.c
----------------------------------------------------------------------
diff --git a/apps/slinky_oic/src/main.c b/apps/slinky_oic/src/main.c
index e26a3c0..1faba3c 100755
--- a/apps/slinky_oic/src/main.c
+++ b/apps/slinky_oic/src/main.c
@@ -57,7 +57,7 @@ static struct os_task task2;
 
 /* Task 3 */
 #define TASK3_PRIO (10)
-#define TASK3_STACK_SIZE    OS_STACK_ALIGN(384)
+#define TASK3_STACK_SIZE    OS_STACK_ALIGN(512)
 static struct os_task task3;
 
 static struct os_eventq slinky_oic_evq;

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/879d71d6/apps/spitest/src/main.c
----------------------------------------------------------------------
diff --git a/apps/spitest/src/main.c b/apps/spitest/src/main.c
index 5927af8..5f31162 100755
--- a/apps/spitest/src/main.c
+++ b/apps/spitest/src/main.c
@@ -52,7 +52,7 @@ struct os_task task1;
 
 /* Task 3 */
 #define TASK2_PRIO (2)
-#define TASK2_STACK_SIZE    OS_STACK_ALIGN(384)
+#define TASK2_STACK_SIZE    OS_STACK_ALIGN(512)
 static struct os_task task2;
 
 static struct os_eventq spitest_evq;

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/879d71d6/apps/splitty/src/main.c
----------------------------------------------------------------------
diff --git a/apps/splitty/src/main.c b/apps/splitty/src/main.c
index c8d9ab1..fcb18c6 100755
--- a/apps/splitty/src/main.c
+++ b/apps/splitty/src/main.c
@@ -57,7 +57,7 @@ static struct os_task task2;
 
 /* Task 3 */
 #define TASK3_PRIO (10)
-#define TASK3_STACK_SIZE    OS_STACK_ALIGN(384)
+#define TASK3_STACK_SIZE    OS_STACK_ALIGN(512)
 static struct os_task task3;
 
 static struct log my_log;

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/879d71d6/apps/timtest/src/main.c
----------------------------------------------------------------------
diff --git a/apps/timtest/src/main.c b/apps/timtest/src/main.c
index d55ced0..43252a1 100755
--- a/apps/timtest/src/main.c
+++ b/apps/timtest/src/main.c
@@ -42,7 +42,7 @@ struct os_task task2;
 
 /* Task 3 */
 #define TASK3_PRIO (3)
-#define TASK3_STACK_SIZE    OS_STACK_ALIGN(384)
+#define TASK3_STACK_SIZE    OS_STACK_ALIGN(512)
 static struct os_task task3;
 
 static struct os_eventq timtest_evq;