summaryrefslogtreecommitdiff
path: root/common_smp/src/tx_thread_stack_error_handler.c
diff options
context:
space:
mode:
authorScott Larson <[email protected]>2020-10-16 11:57:42 -0700
committerScott Larson <[email protected]>2020-10-16 11:57:42 -0700
commit6773d468ae877ce36feda1c86842510fb33501a3 (patch)
treef151f40723c3f794adc97f302f3df54a74c081b8 /common_smp/src/tx_thread_stack_error_handler.c
parentc2df92c885c06b85a3800617b46f291342ea184e (diff)
6.1.1 patch: add stack sealing to armv8-m, fix misra warning, fix stack check link errorv6.1.1_rel
Diffstat (limited to 'common_smp/src/tx_thread_stack_error_handler.c')
-rw-r--r--common_smp/src/tx_thread_stack_error_handler.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/common_smp/src/tx_thread_stack_error_handler.c b/common_smp/src/tx_thread_stack_error_handler.c
index 219df6de..b03d64fb 100644
--- a/common_smp/src/tx_thread_stack_error_handler.c
+++ b/common_smp/src/tx_thread_stack_error_handler.c
@@ -26,7 +26,7 @@
/* Include necessary system files. */
#include "tx_api.h"
-#ifdef TX_MISRA_ENABLE
+#if defined(TX_MISRA_ENABLE) || defined(TX_ENABLE_STACK_CHECKING)
#include "tx_thread.h"
@@ -35,7 +35,7 @@
/* FUNCTION RELEASE */
/* */
/* _tx_thread_stack_error_handler PORTABLE C */
-/* 6.1 */
+/* 6.1.1 */
/* AUTHOR */
/* */
/* William E. Lamie, Microsoft Corporation */
@@ -66,6 +66,9 @@
/* DATE NAME DESCRIPTION */
/* */
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
+/* 10-16-2020 William E. Lamie Modified comment(s), */
+/* fixed link issue, */
+/* resulting in version 6.1.1 */
/* */
/**************************************************************************/
VOID _tx_thread_stack_error_handler(TX_THREAD *thread_ptr)