Skip to content

Commit 9b050d0

Browse files
author
Scott Larson
committed
patch release 6.1.2
1 parent 6773d46 commit 9b050d0

File tree

535 files changed

+9615
-338325
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

535 files changed

+9615
-338325
lines changed

common/inc/tx_api.h

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
/* APPLICATION INTERFACE DEFINITION RELEASE */
2727
/* */
2828
/* tx_api.h PORTABLE C */
29-
/* 6.1.1 */
29+
/* 6.1.2 */
3030
/* AUTHOR */
3131
/* */
3232
/* William E. Lamie, Microsoft Corporation */
@@ -54,6 +54,10 @@
5454
/* 10-16-2020 William E. Lamie Modified comment(s), and */
5555
/* increased patch version, */
5656
/* resulting in version 6.1.1 */
57+
/* 11-09-2020 Yuxin Zhou Modified comment(s), and */
58+
/* moved TX_THREAD_GET_SYSTEM_ */
59+
/* STATE to tx_api.h, */
60+
/* resulting in version 6.1.2 */
5761
/* */
5862
/**************************************************************************/
5963

@@ -86,7 +90,7 @@ extern "C" {
8690
#define AZURE_RTOS_THREADX
8791
#define THREADX_MAJOR_VERSION 6
8892
#define THREADX_MINOR_VERSION 1
89-
#define THREADX_PATCH_VERSION 1
93+
#define THREADX_PATCH_VERSION 2
9094

9195
/* Define the following symbol for backward compatibility */
9296
#define EL_PRODUCT_THREADX
@@ -2213,6 +2217,13 @@ void __ghs_rnerr(char *errMsg, int stackLevels, int stackTraceDisplay, void *hex
22132217

22142218
#endif
22152219

2220+
/* Define the get system state macro. By default, it simply maps to the variable _tx_thread_system_state. */
2221+
/* Note that prior to Azure RTOS 6.1, this symbol was defined in tx_thread.h. */
2222+
#ifndef TX_THREAD_GET_SYSTEM_STATE
2223+
#define TX_THREAD_GET_SYSTEM_STATE() _tx_thread_system_state
2224+
#endif
2225+
2226+
22162227

22172228

22182229
/* Determine if a C++ compiler is being used. If so, complete the standard

common/inc/tx_thread.h

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
/* COMPONENT DEFINITION RELEASE */
2727
/* */
2828
/* tx_thread.h PORTABLE C */
29-
/* 6.1 */
29+
/* 6.1.2 */
3030
/* AUTHOR */
3131
/* */
3232
/* William E. Lamie, Microsoft Corporation */
@@ -44,6 +44,10 @@
4444
/* 05-19-2020 William E. Lamie Initial Version 6.0 */
4545
/* 09-30-2020 Yuxin Zhou Modified comment(s), */
4646
/* resulting in version 6.1 */
47+
/* 11-09-2020 Yuxin Zhou Modified comment(s), and */
48+
/* moved TX_THREAD_GET_SYSTEM_ */
49+
/* STATE to tx_api.h, */
50+
/* resulting in version 6.1.2 */
4751
/* */
4852
/**************************************************************************/
4953

@@ -111,11 +115,11 @@
111115

112116

113117
/* Define the get system state macro. By default, it simply maps to the variable _tx_thread_system_state. */
114-
118+
/* This symbol is moved to tx_api.h. Therefore removed from this file.
115119
#ifndef TX_THREAD_GET_SYSTEM_STATE
116120
#define TX_THREAD_GET_SYSTEM_STATE() _tx_thread_system_state
117121
#endif
118-
122+
*/
119123

120124
/* Define the check for whether or not to call the _tx_thread_system_return function. A non-zero value
121125
indicates that _tx_thread_system_return should not be called. */

common_smp/inc/tx_user.h

Lines changed: 0 additions & 257 deletions
This file was deleted.

0 commit comments

Comments
 (0)