summaryrefslogtreecommitdiff
path: root/ports_smp/linux/gnu
diff options
context:
space:
mode:
Diffstat (limited to 'ports_smp/linux/gnu')
-rw-r--r--ports_smp/linux/gnu/inc/tx_port.h9
-rw-r--r--ports_smp/linux/gnu/readme_threadx.txt3
2 files changed, 9 insertions, 3 deletions
diff --git a/ports_smp/linux/gnu/inc/tx_port.h b/ports_smp/linux/gnu/inc/tx_port.h
index 7db203d9..37535d9e 100644
--- a/ports_smp/linux/gnu/inc/tx_port.h
+++ b/ports_smp/linux/gnu/inc/tx_port.h
@@ -26,7 +26,7 @@
/* PORT SPECIFIC C INFORMATION RELEASE */
/* */
/* tx_port.h SMP/Linux/GCC */
-/* 6.1 */
+/* 6.1.6 */
/* */
/* AUTHOR */
/* */
@@ -48,6 +48,9 @@
/* DATE NAME DESCRIPTION */
/* */
/* 09-30-2020 William E. Lamie Initial Version 6.1 */
+/* 04-02-2021 Bhupendra Naphade Modified comment(s),updated */
+/* macro definition, */
+/* resulting in version 6.1.6 */
/* */
/**************************************************************************/
@@ -600,7 +603,7 @@ void _tx_thread_smp_debug_entry_insert(ULONG id, ULONG su
is used to define a local function save area for the disable and restore
macros. */
-#define TX_INTERRUPT_SAVE_AREA unsigned int tx_interrupt_save;
+#define TX_INTERRUPT_SAVE_AREA UINT tx_interrupt_save;
#define TX_DISABLE tx_interrupt_save = _tx_thread_smp_protect();
#define TX_RESTORE _tx_thread_smp_unprotect(tx_interrupt_save);
@@ -628,7 +631,7 @@ void _tx_thread_smp_debug_entry_insert(ULONG id, ULONG su
#ifdef TX_THREAD_INIT
CHAR _tx_version_id[] =
- "Copyright (c) Microsoft Corporation. All rights reserved. * ThreadX SMP/Linux/gcc Version 6.1 *";
+ "Copyright (c) Microsoft Corporation. All rights reserved. * ThreadX SMP/Linux/gcc Version 6.1.6 *";
#else
extern CHAR _tx_version_id[];
#endif
diff --git a/ports_smp/linux/gnu/readme_threadx.txt b/ports_smp/linux/gnu/readme_threadx.txt
index 646b8714..6f41a356 100644
--- a/ports_smp/linux/gnu/readme_threadx.txt
+++ b/ports_smp/linux/gnu/readme_threadx.txt
@@ -145,6 +145,9 @@ For generic code revision information, please refer to the readme_threadx_generi
file, which is included in your distribution. The following details the revision
information associated with this specific port of ThreadX:
+04-02-2021 Release 6.1.6 changes:
+ tx_port.h Updated macro definition
+
09-30-2020 Initial ThreadX SMP 6.1 version for Linux using GNU GCC tools.