From e412f20e70d866dc537328470c9c2dc40d6d62b7 Mon Sep 17 00:00:00 2001 From: tomoyuki yamanaka Date: Mon, 27 Jun 2016 20:42:19 +0900 Subject: [PATCH 1/2] Change stack size of main thread for RZ_A1H We changed the stack size of main thread for RZ_A1H. We changed "OS_MAINSTKSIZE" from 2048 to 4096. Because stack shortage was found in the automatic test by the CI System . --- rtos/rtx/TARGET_CORTEX_A/RTX_Conf_CA.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtos/rtx/TARGET_CORTEX_A/RTX_Conf_CA.c b/rtos/rtx/TARGET_CORTEX_A/RTX_Conf_CA.c index 96edb8e2cc0..f3e6ba50117 100644 --- a/rtos/rtx/TARGET_CORTEX_A/RTX_Conf_CA.c +++ b/rtos/rtx/TARGET_CORTEX_A/RTX_Conf_CA.c @@ -74,7 +74,7 @@ // Defines stack size for main thread. // Default: 200 #ifndef OS_MAINSTKSIZE - #define OS_MAINSTKSIZE 2048 + #define OS_MAINSTKSIZE 4096 #endif #ifndef __MBED_CMSIS_RTOS_CA9 From 287aea22ee8d99973ce29cc48fae532a3a9db29a Mon Sep 17 00:00:00 2001 From: tomoyuki yamanaka Date: Tue, 28 Jun 2016 11:15:19 +0900 Subject: [PATCH 2/2] Update the comments of stack size for main threads We updated the comments of stack size for main threads. --- rtos/rtx/TARGET_CORTEX_A/RTX_Conf_CA.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtos/rtx/TARGET_CORTEX_A/RTX_Conf_CA.c b/rtos/rtx/TARGET_CORTEX_A/RTX_Conf_CA.c index f3e6ba50117..83b5820e090 100644 --- a/rtos/rtx/TARGET_CORTEX_A/RTX_Conf_CA.c +++ b/rtos/rtx/TARGET_CORTEX_A/RTX_Conf_CA.c @@ -72,7 +72,7 @@ // Main Thread stack size [bytes] <64-4096:8><#/4> // Defines stack size for main thread. -// Default: 200 +// Default: 4096 #ifndef OS_MAINSTKSIZE #define OS_MAINSTKSIZE 4096 #endif