aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLior Dekel <Lior.dekel@arm.com>2021-12-22 16:47:25 +0200
committerKristofer Jonsson <kristofer.jonsson@arm.com>2021-12-23 12:00:04 +0000
commit412adc214cdfc57ee5b1495a45659a6f05c55dc0 (patch)
treec4786a2658f4c64abe2382b4e98728e7573ab4e6
parent7b8fa5e739e91671c926e9e7c887579d82728513 (diff)
downloadethos-u-core-platform-412adc214cdfc57ee5b1495a45659a6f05c55dc0.tar.gz
PlatformNightly ThreadX bug fix
Increasing stack size for threads in ThreadX Change-Id: Ied7502422034a9fb1ac92aa5ebaa70b9d0bc9939
-rw-r--r--applications/threadx_demo/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/threadx_demo/main.cpp b/applications/threadx_demo/main.cpp
index 94430ee..f813ee4 100644
--- a/applications/threadx_demo/main.cpp
+++ b/applications/threadx_demo/main.cpp
@@ -46,7 +46,7 @@ using namespace InferenceProcess;
// Nr. of jobs to create per job thread
#define NUM_JOBS_PER_THREAD 1
-#define PROCESS_THREAD_STACK_SIZE (16 * 1024)
+#define PROCESS_THREAD_STACK_SIZE (20 * 1024)
#define SENDER_THREAD_STACK_SIZE (2 * 1024)
#define PROCESS_THREAD_CONTEXT_SIZE (sizeof(TX_THREAD))
#define SENDER_THREAD_CONTEXT_SIZE (sizeof(TX_THREAD))