Skip to content

Commit

Permalink
Release 6.1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
yuxin-azrtos committed Oct 14, 2021
1 parent 215df45 commit 1af8404
Show file tree
Hide file tree
Showing 1,812 changed files with 60,628 additions and 249,792 deletions.
3 changes: 2 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ cmake_minimum_required(VERSION 3.0.0 FATAL_ERROR)

# Set up the project
project(threadx
VERSION 6.0.0
LANGUAGES C ASM
)

Expand All @@ -12,6 +11,8 @@ endif()
if(NOT DEFINED THREADX_TOOLCHAIN)
message(FATAL_ERROR "Error: THREADX_TOOLCHAIN not defined")
endif()
message(STATUS "THREADX_ARCH: ${THREADX_ARCH}")
message(STATUS "THREADX_TOOLCHAIN: ${THREADX_TOOLCHAIN}")

# Define our target library and an alias for consumers
add_library(${PROJECT_NAME})
Expand Down
265 changes: 134 additions & 131 deletions common/inc/tx_api.h

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions common/inc/tx_block_pool.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,12 @@
#define TX_BLOCK_POOL_ID ((ULONG) 0x424C4F43)


/* Determine if in-line component initialization is supported by the
/* Determine if in-line component initialization is supported by the
caller. */

#ifdef TX_INVOKE_INLINE_INITIALIZATION

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

#ifndef TX_BLOCK_POOL_ENABLE_PERFORMANCE_INFO
Expand Down
4 changes: 2 additions & 2 deletions common/inc/tx_byte_pool.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,12 @@
#endif


/* Determine if in-line component initialization is supported by the
/* Determine if in-line component initialization is supported by the
caller. */

#ifdef TX_INVOKE_INLINE_INITIALIZATION

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

#ifndef TX_BYTE_POOL_ENABLE_PERFORMANCE_INFO
Expand Down
4 changes: 2 additions & 2 deletions common/inc/tx_event_flags.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,11 @@
#define TX_EVENT_FLAGS_CLEAR_MASK ((UINT) 0x1)


/* Determine if in-line component initialization is supported by the
/* Determine if in-line component initialization is supported by the
caller. */
#ifdef TX_INVOKE_INLINE_INITIALIZATION

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

#ifndef TX_EVENT_FLAGS_ENABLE_PERFORMANCE_INFO
Expand Down
10 changes: 5 additions & 5 deletions common/inc/tx_initialize.h
Original file line number Diff line number Diff line change
Expand Up @@ -67,15 +67,15 @@ VOID _tx_initialize_low_level(VOID);

/* Define the macro for adding additional port-specific global data. This macro is defined
as white space, unless defined by tx_port.h. */

#ifndef TX_PORT_SPECIFIC_DATA
#define TX_PORT_SPECIFIC_DATA
#endif


/* Define the macro for adding additional port-specific pre and post initialization processing.
/* Define the macro for adding additional port-specific pre and post initialization processing.
These macros is defined as white space, unless defined by tx_port.h. */

#ifndef TX_PORT_SPECIFIC_PRE_INITIALIZATION
#define TX_PORT_SPECIFIC_PRE_INITIALIZATION
#endif
Expand All @@ -102,9 +102,9 @@ VOID _tx_initialize_low_level(VOID);
#endif


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

INITIALIZE_DECLARE VOID *_tx_initialize_unused_memory;
Expand Down
4 changes: 2 additions & 2 deletions common/inc/tx_mutex.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,12 @@
#define TX_MUTEX_ID ((ULONG) 0x4D555445)


/* Determine if in-line component initialization is supported by the
/* Determine if in-line component initialization is supported by the
caller. */

#ifdef TX_INVOKE_INLINE_INITIALIZATION

/* Yes, in-line initialization is supported, remap the mutex initialization
/* Yes, in-line initialization is supported, remap the mutex initialization
function. */

#ifndef TX_MUTEX_ENABLE_PERFORMANCE_INFO
Expand Down
6 changes: 3 additions & 3 deletions common/inc/tx_queue.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,11 @@
#define TX_QUEUE_ID ((ULONG) 0x51554555)


/* Determine if in-line component initialization is supported by the
/* Determine if in-line component initialization is supported by the
caller. */
#ifdef TX_INVOKE_INLINE_INITIALIZATION

/* Yes, in-line initialization is supported, remap the queue initialization
/* Yes, in-line initialization is supported, remap the queue initialization
function. */

#ifndef TX_QUEUE_ENABLE_PERFORMANCE_INFO
Expand All @@ -85,7 +85,7 @@ VOID _tx_queue_initialize(VOID);
#endif


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

#ifndef TX_QUEUE_MESSAGE_COPY
Expand Down
6 changes: 3 additions & 3 deletions common/inc/tx_semaphore.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@
#define TX_SEMAPHORE_ID ((ULONG) 0x53454D41)


/* Determine if in-line component initialization is supported by the
/* Determine if in-line component initialization is supported by the
caller. */
#ifdef TX_INVOKE_INLINE_INITIALIZATION
/* Yes, in-line initialization is supported, remap the
/* Yes, in-line initialization is supported, remap the
semaphore initialization function. */
#ifndef TX_SEMAPHORE_ENABLE_PERFORMANCE_INFO
#define _tx_semaphore_initialize() \
Expand All @@ -76,7 +76,7 @@
#endif
#define TX_SEMAPHORE_INIT
#else
/* No in-line initialization is supported, use standard
/* No in-line initialization is supported, use standard
function call. */
VOID _tx_semaphore_initialize(VOID);
#endif
Expand Down
Loading

0 comments on commit 1af8404

Please sign in to comment.