Skip to content

Commit 1af8404

Browse files
committed
Release 6.1.9
1 parent 215df45 commit 1af8404

File tree

1,812 files changed

+60628
-249792
lines changed

Some content is hidden

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

1,812 files changed

+60628
-249792
lines changed

CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ cmake_minimum_required(VERSION 3.0.0 FATAL_ERROR)
22

33
# Set up the project
44
project(threadx
5-
VERSION 6.0.0
65
LANGUAGES C ASM
76
)
87

@@ -12,6 +11,8 @@ endif()
1211
if(NOT DEFINED THREADX_TOOLCHAIN)
1312
message(FATAL_ERROR "Error: THREADX_TOOLCHAIN not defined")
1413
endif()
14+
message(STATUS "THREADX_ARCH: ${THREADX_ARCH}")
15+
message(STATUS "THREADX_TOOLCHAIN: ${THREADX_TOOLCHAIN}")
1516

1617
# Define our target library and an alias for consumers
1718
add_library(${PROJECT_NAME})

common/inc/tx_api.h

Lines changed: 134 additions & 131 deletions
Large diffs are not rendered by default.

common/inc/tx_block_pool.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,12 @@
5656
#define TX_BLOCK_POOL_ID ((ULONG) 0x424C4F43)
5757

5858

59-
/* Determine if in-line component initialization is supported by the
59+
/* Determine if in-line component initialization is supported by the
6060
caller. */
6161

6262
#ifdef TX_INVOKE_INLINE_INITIALIZATION
6363

64-
/* Yes, in-line initialization is supported, remap the block memory pool
64+
/* Yes, in-line initialization is supported, remap the block memory pool
6565
initialization function. */
6666

6767
#ifndef TX_BLOCK_POOL_ENABLE_PERFORMANCE_INFO

common/inc/tx_byte_pool.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,12 +68,12 @@
6868
#endif
6969

7070

71-
/* Determine if in-line component initialization is supported by the
71+
/* Determine if in-line component initialization is supported by the
7272
caller. */
7373

7474
#ifdef TX_INVOKE_INLINE_INITIALIZATION
7575

76-
/* Yes, in-line initialization is supported, remap the byte memory pool
76+
/* Yes, in-line initialization is supported, remap the byte memory pool
7777
initialization function. */
7878

7979
#ifndef TX_BYTE_POOL_ENABLE_PERFORMANCE_INFO

common/inc/tx_event_flags.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,11 @@
5858
#define TX_EVENT_FLAGS_CLEAR_MASK ((UINT) 0x1)
5959

6060

61-
/* Determine if in-line component initialization is supported by the
61+
/* Determine if in-line component initialization is supported by the
6262
caller. */
6363
#ifdef TX_INVOKE_INLINE_INITIALIZATION
6464

65-
/* Yes, in-line initialization is supported, remap the event flag initialization
65+
/* Yes, in-line initialization is supported, remap the event flag initialization
6666
function. */
6767

6868
#ifndef TX_EVENT_FLAGS_ENABLE_PERFORMANCE_INFO

common/inc/tx_initialize.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -67,15 +67,15 @@ VOID _tx_initialize_low_level(VOID);
6767

6868
/* Define the macro for adding additional port-specific global data. This macro is defined
6969
as white space, unless defined by tx_port.h. */
70-
70+
7171
#ifndef TX_PORT_SPECIFIC_DATA
7272
#define TX_PORT_SPECIFIC_DATA
7373
#endif
7474

7575

76-
/* Define the macro for adding additional port-specific pre and post initialization processing.
76+
/* Define the macro for adding additional port-specific pre and post initialization processing.
7777
These macros is defined as white space, unless defined by tx_port.h. */
78-
78+
7979
#ifndef TX_PORT_SPECIFIC_PRE_INITIALIZATION
8080
#define TX_PORT_SPECIFIC_PRE_INITIALIZATION
8181
#endif
@@ -102,9 +102,9 @@ VOID _tx_initialize_low_level(VOID);
102102
#endif
103103

104104

105-
/* Define the unused memory pointer. The value of the first available
105+
/* Define the unused memory pointer. The value of the first available
106106
memory address is placed in this variable in the low-level
107-
initialization function. The content of this variable is passed
107+
initialization function. The content of this variable is passed
108108
to the application's system definition function. */
109109

110110
INITIALIZE_DECLARE VOID *_tx_initialize_unused_memory;

common/inc/tx_mutex.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,12 @@
5656
#define TX_MUTEX_ID ((ULONG) 0x4D555445)
5757

5858

59-
/* Determine if in-line component initialization is supported by the
59+
/* Determine if in-line component initialization is supported by the
6060
caller. */
6161

6262
#ifdef TX_INVOKE_INLINE_INITIALIZATION
6363

64-
/* Yes, in-line initialization is supported, remap the mutex initialization
64+
/* Yes, in-line initialization is supported, remap the mutex initialization
6565
function. */
6666

6767
#ifndef TX_MUTEX_ENABLE_PERFORMANCE_INFO

common/inc/tx_queue.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,11 @@
5656
#define TX_QUEUE_ID ((ULONG) 0x51554555)
5757

5858

59-
/* Determine if in-line component initialization is supported by the
59+
/* Determine if in-line component initialization is supported by the
6060
caller. */
6161
#ifdef TX_INVOKE_INLINE_INITIALIZATION
6262

63-
/* Yes, in-line initialization is supported, remap the queue initialization
63+
/* Yes, in-line initialization is supported, remap the queue initialization
6464
function. */
6565

6666
#ifndef TX_QUEUE_ENABLE_PERFORMANCE_INFO
@@ -85,7 +85,7 @@ VOID _tx_queue_initialize(VOID);
8585
#endif
8686

8787

88-
/* Define the message copy macro. Note that the source and destination
88+
/* Define the message copy macro. Note that the source and destination
8989
pointers must be modified since they are used subsequently. */
9090

9191
#ifndef TX_QUEUE_MESSAGE_COPY

common/inc/tx_semaphore.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,10 @@
5656
#define TX_SEMAPHORE_ID ((ULONG) 0x53454D41)
5757

5858

59-
/* Determine if in-line component initialization is supported by the
59+
/* Determine if in-line component initialization is supported by the
6060
caller. */
6161
#ifdef TX_INVOKE_INLINE_INITIALIZATION
62-
/* Yes, in-line initialization is supported, remap the
62+
/* Yes, in-line initialization is supported, remap the
6363
semaphore initialization function. */
6464
#ifndef TX_SEMAPHORE_ENABLE_PERFORMANCE_INFO
6565
#define _tx_semaphore_initialize() \
@@ -76,7 +76,7 @@
7676
#endif
7777
#define TX_SEMAPHORE_INIT
7878
#else
79-
/* No in-line initialization is supported, use standard
79+
/* No in-line initialization is supported, use standard
8080
function call. */
8181
VOID _tx_semaphore_initialize(VOID);
8282
#endif

0 commit comments

Comments
 (0)