Skip to content

Commit 06dabb0

Browse files
authored
Merge pull request #442 from eclipse-threadx/dev
Release ThreadX 6.4.2
2 parents 98c9172 + f0a44ad commit 06dabb0

File tree

263 files changed

+1712
-243
lines changed

Some content is hidden

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

263 files changed

+1712
-243
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 3.0.0 FATAL_ERROR)
1+
cmake_minimum_required(VERSION 3.13 FATAL_ERROR)
22

33
# Set up the project
44
project(threadx

cmake/riscv64-unknown-elf.cmake

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Toolchain settings
2+
set(CMAKE_C_COMPILER riscv64-unknown-elf-gcc)
3+
set(CMAKE_CXX_COMPILER riscv64-unknown-elf-g++)
4+
set(AS riscv64-unknown-elf-as)
5+
set(AR riscv64-unknown-elf-ar)
6+
set(OBJCOPY riscv64-unknown-elf-objcopy)
7+
set(OBJDUMP riscv64-unknown-elf-objdump)
8+
set(SIZE riscv64-unknown-elf-size)
9+
10+
set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
11+
set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
12+
set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
13+
set(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY)
14+
15+
# this makes the test compiles use static library option so that we don't need to pre-set linker flags and scripts
16+
set(CMAKE_TRY_COMPILE_TARGET_TYPE STATIC_LIBRARY)
17+
18+
set(CMAKE_C_FLAGS "${CFLAGS}" CACHE INTERNAL "c compiler flags")
19+
set(CMAKE_CXX_FLAGS "${CXXFLAGS}" CACHE INTERNAL "cxx compiler flags")
20+
set(CMAKE_ASM_FLAGS "${ASFLAGS} -D__ASSEMBLER__" CACHE INTERNAL "asm compiler flags")
21+
set(CMAKE_EXE_LINKER_FLAGS "${LDFLAGS}" CACHE INTERNAL "exe link flags")
22+
23+
SET(CMAKE_C_FLAGS_DEBUG "-Og -g -ggdb3" CACHE INTERNAL "c debug compiler flags")
24+
SET(CMAKE_CXX_FLAGS_DEBUG "-Og -g -ggdb3" CACHE INTERNAL "cxx debug compiler flags")
25+
SET(CMAKE_ASM_FLAGS_DEBUG "-g -ggdb3" CACHE INTERNAL "asm debug compiler flags")
26+
27+
SET(CMAKE_C_FLAGS_RELEASE "-O3" CACHE INTERNAL "c release compiler flags")
28+
SET(CMAKE_CXX_FLAGS_RELEASE "-O3" CACHE INTERNAL "cxx release compiler flags")
29+
SET(CMAKE_ASM_FLAGS_RELEASE "" CACHE INTERNAL "asm release compiler flags")

cmake/riscv64_gnu.cmake

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Name of the target
2+
set(CMAKE_SYSTEM_NAME Generic)
3+
set(CMAKE_SYSTEM_PROCESSOR risc-v64)
4+
5+
set(THREADX_ARCH "risc-v64")
6+
set(THREADX_TOOLCHAIN "gnu")
7+
set(ARCH_FLAGS "-g -march=rv64gc -mabi=lp64d -mcmodel=medany")
8+
set(CFLAGS "${ARCH_FLAGS}")
9+
set(ASFLAGS "${ARCH_FLAGS}")
10+
set(LDFLAGS "${ARCH_FLAGS}")
11+
12+
include(${CMAKE_CURRENT_LIST_DIR}/riscv64-unknown-elf.cmake)

common/inc/tx_api.h

+4-1
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,9 @@
106106
/* 03-01-2024 Tiejun Zhou Modified comment(s), */
107107
/* update version number, */
108108
/* resulting in version 6.4.1 */
109+
/* 02-19-2025 Frédéric Desbiens Modified comment(s), */
110+
/* update version number, */
111+
/* resulting in version 6.4.2 */
109112
/* */
110113
/**************************************************************************/
111114

@@ -145,7 +148,7 @@ extern "C" {
145148
#define AZURE_RTOS_THREADX
146149
#define THREADX_MAJOR_VERSION 6
147150
#define THREADX_MINOR_VERSION 4
148-
#define THREADX_PATCH_VERSION 1
151+
#define THREADX_PATCH_VERSION 2
149152

150153
/* Define the following symbol for backward compatibility */
151154
#define EL_PRODUCT_THREADX

common_smp/inc/tx_api.h

+4-1
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,9 @@
9494
/* 03-01-2024 Tiejun Zhou Modified comment(s), */
9595
/* update version number, */
9696
/* resulting in version 6.4.1 */
97+
/* 02-19-2025 Frédéric Desbiens Modified comment(s), */
98+
/* update version number, */
99+
/* resulting in version 6.4.2 */
97100
/* */
98101
/**************************************************************************/
99102

@@ -146,7 +149,7 @@ extern "C" {
146149
#define AZURE_RTOS_THREADX
147150
#define THREADX_MAJOR_VERSION 6
148151
#define THREADX_MINOR_VERSION 4
149-
#define THREADX_PATCH_VERSION 1
152+
#define THREADX_PATCH_VERSION 2
150153

151154
/* Define the following symbol for backward compatibility */
152155
#define EL_PRODUCT_THREADX

ports/arc_em/metaware/inc/tx_port.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ void _tx_initialize_start_interrupts(void);
321321

322322
#ifdef TX_THREAD_INIT
323323
CHAR _tx_version_id[] =
324-
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARCv2_EM/MetaWare Version 6.4.1 *";
324+
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARCv2_EM/MetaWare Version 6.4.2 *";
325325
#else
326326
#ifdef TX_MISRA_ENABLE
327327
extern CHAR _tx_version_id[100];

ports/arc_hs/metaware/inc/tx_port.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ VOID tx_thread_register_bank_assign(VOID *thread_ptr, UINT register_bank);
335335

336336
#ifdef TX_THREAD_INIT
337337
CHAR _tx_version_id[] =
338-
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARC_HS/MetaWare Version 6.4.1 *";
338+
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARC_HS/MetaWare Version 6.4.2 *";
339339
#else
340340
#ifdef TX_MISRA_ENABLE
341341
extern CHAR _tx_version_id[100];

ports/arm11/ac5/inc/tx_port.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ unsigned int _tx_thread_interrupt_restore(UINT old_posture);
319319

320320
#ifdef TX_THREAD_INIT
321321
CHAR _tx_version_id[] =
322-
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARM11/AC5 Version 6.4.1 *";
322+
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARM11/AC5 Version 6.4.2 *";
323323
#else
324324
extern CHAR _tx_version_id[];
325325
#endif

ports/arm11/gnu/inc/tx_port.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ unsigned int _tx_thread_interrupt_restore(UINT old_posture);
308308

309309
#ifdef TX_THREAD_INIT
310310
CHAR _tx_version_id[] =
311-
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARM11/GNU Version 6.4.1 *";
311+
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARM11/GNU Version 6.4.2 *";
312312
#else
313313
extern CHAR _tx_version_id[];
314314
#endif

ports/arm11/iar/inc/tx_port.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ void _tx_thread_interrupt_restore(UINT old_posture);
374374

375375
#ifdef TX_THREAD_INIT
376376
CHAR _tx_version_id[] =
377-
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARM11/IAR Version 6.4.1 *";
377+
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARM11/IAR Version 6.4.2 *";
378378
#else
379379
#ifdef TX_MISRA_ENABLE
380380
extern CHAR _tx_version_id[100];

ports/arm9/ac5/inc/tx_port.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ unsigned int _tx_thread_interrupt_restore(UINT old_posture);
321321

322322
#ifdef TX_THREAD_INIT
323323
CHAR _tx_version_id[] =
324-
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARM9/AC5 Version 6.4.1 *";
324+
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARM9/AC5 Version 6.4.2 *";
325325
#else
326326
extern CHAR _tx_version_id[];
327327
#endif

ports/arm9/gnu/inc/tx_port.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ unsigned int _tx_thread_interrupt_restore(UINT old_posture);
308308

309309
#ifdef TX_THREAD_INIT
310310
CHAR _tx_version_id[] =
311-
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARM9/GNU Version 6.4.1 *";
311+
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARM9/GNU Version 6.4.2 *";
312312
#else
313313
extern CHAR _tx_version_id[];
314314
#endif

ports/arm9/iar/inc/tx_port.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ void _tx_thread_interrupt_restore(UINT old_posture);
374374

375375
#ifdef TX_THREAD_INIT
376376
CHAR _tx_version_id[] =
377-
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARM9/IAR Version 6.4.1 *";
377+
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARM9/IAR Version 6.4.2 *";
378378
#else
379379
#ifdef TX_MISRA_ENABLE
380380
extern CHAR _tx_version_id[100];

ports/c667x/ccs/inc/tx_port.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ unsigned int _tx_thread_interrupt_control(unsigned int);
270270

271271
#ifdef TX_THREAD_INIT
272272
CHAR _tx_version_id[] =
273-
"Copyright (c) 2024 Microsoft Corporation. * ThreadX C667x/TI Version 6.4.1 *";
273+
"Copyright (c) 2024 Microsoft Corporation. * ThreadX C667x/TI Version 6.4.2 *";
274274
#else
275275
extern CHAR _tx_version_id[];
276276
#endif

ports/cortex_a12/ac6/inc/tx_port.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ void tx_thread_vfp_disable(void);
320320

321321
#ifdef TX_THREAD_INIT
322322
CHAR _tx_version_id[] =
323-
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-A Version 6.4.1 *";
323+
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-A Version 6.4.2 *";
324324
#else
325325
extern CHAR _tx_version_id[];
326326
#endif

ports/cortex_a12/gnu/inc/tx_port.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ void tx_thread_vfp_disable(void);
320320

321321
#ifdef TX_THREAD_INIT
322322
CHAR _tx_version_id[] =
323-
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-A Version 6.4.1 *";
323+
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-A Version 6.4.2 *";
324324
#else
325325
extern CHAR _tx_version_id[];
326326
#endif

ports/cortex_a15/ac6/inc/tx_port.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ void tx_thread_vfp_disable(void);
320320

321321
#ifdef TX_THREAD_INIT
322322
CHAR _tx_version_id[] =
323-
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-A Version 6.4.1 *";
323+
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-A Version 6.4.2 *";
324324
#else
325325
extern CHAR _tx_version_id[];
326326
#endif

ports/cortex_a15/gnu/inc/tx_port.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ void tx_thread_vfp_disable(void);
320320

321321
#ifdef TX_THREAD_INIT
322322
CHAR _tx_version_id[] =
323-
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-A Version 6.4.1 *";
323+
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-A Version 6.4.2 *";
324324
#else
325325
extern CHAR _tx_version_id[];
326326
#endif

ports/cortex_a15/iar/inc/tx_port.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ void tx_thread_vfp_disable(void);
384384

385385
#ifdef TX_THREAD_INIT
386386
CHAR _tx_version_id[] =
387-
"Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-A15/IAR Version 6.4.1 *";
387+
"Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-A15/IAR Version 6.4.2 *";
388388
#else
389389
#ifdef TX_MISRA_ENABLE
390390
extern CHAR _tx_version_id[100];

ports/cortex_a17/ac6/inc/tx_port.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ void tx_thread_vfp_disable(void);
320320

321321
#ifdef TX_THREAD_INIT
322322
CHAR _tx_version_id[] =
323-
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-A Version 6.4.1 *";
323+
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-A Version 6.4.2 *";
324324
#else
325325
extern CHAR _tx_version_id[];
326326
#endif

ports/cortex_a17/gnu/inc/tx_port.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ void tx_thread_vfp_disable(void);
320320

321321
#ifdef TX_THREAD_INIT
322322
CHAR _tx_version_id[] =
323-
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-A Version 6.4.1 *";
323+
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-A Version 6.4.2 *";
324324
#else
325325
extern CHAR _tx_version_id[];
326326
#endif

ports/cortex_a34/ac6/inc/tx_port.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ VOID tx_thread_fp_disable(VOID);
369369

370370
#ifdef TX_THREAD_INIT
371371
CHAR _tx_version_id[] =
372-
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.1 *";
372+
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.2 *";
373373
#else
374374
extern CHAR _tx_version_id[];
375375
#endif

ports/cortex_a34/gnu/inc/tx_port.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ VOID tx_thread_fp_disable(VOID);
369369

370370
#ifdef TX_THREAD_INIT
371371
CHAR _tx_version_id[] =
372-
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.1 *";
372+
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.2 *";
373373
#else
374374
extern CHAR _tx_version_id[];
375375
#endif

ports/cortex_a35/ac6/inc/tx_port.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ VOID tx_thread_fp_disable(VOID);
369369

370370
#ifdef TX_THREAD_INIT
371371
CHAR _tx_version_id[] =
372-
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.1 *";
372+
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.2 *";
373373
#else
374374
extern CHAR _tx_version_id[];
375375
#endif

ports/cortex_a35/gnu/inc/tx_port.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ VOID tx_thread_fp_disable(VOID);
369369

370370
#ifdef TX_THREAD_INIT
371371
CHAR _tx_version_id[] =
372-
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.1 *";
372+
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.2 *";
373373
#else
374374
extern CHAR _tx_version_id[];
375375
#endif

ports/cortex_a5/ac5/inc/tx_port.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ void tx_thread_vfp_disable(void);
326326

327327
#ifdef TX_THREAD_INIT
328328
CHAR _tx_version_id[] =
329-
"Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-A5/AC5 Version 6.4.1 *";
329+
"Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-A5/AC5 Version 6.4.2 *";
330330
#else
331331
extern CHAR _tx_version_id[];
332332
#endif

ports/cortex_a5/ac6/inc/tx_port.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ void tx_thread_vfp_disable(void);
320320

321321
#ifdef TX_THREAD_INIT
322322
CHAR _tx_version_id[] =
323-
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-A Version 6.4.1 *";
323+
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-A Version 6.4.2 *";
324324
#else
325325
extern CHAR _tx_version_id[];
326326
#endif

ports/cortex_a5/ghs/inc/tx_port.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ void tx_thread_vfp_disable(void);
394394

395395
#ifdef TX_THREAD_INIT
396396
CHAR _tx_version_id[] =
397-
"Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-A5/Green Hills Version 6.4.1 *";
397+
"Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-A5/Green Hills Version 6.4.2 *";
398398
#else
399399
extern CHAR _tx_version_id[];
400400
#endif

ports/cortex_a5/gnu/inc/tx_port.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ void tx_thread_vfp_disable(void);
320320

321321
#ifdef TX_THREAD_INIT
322322
CHAR _tx_version_id[] =
323-
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-A Version 6.4.1 *";
323+
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv7-A Version 6.4.2 *";
324324
#else
325325
extern CHAR _tx_version_id[];
326326
#endif

ports/cortex_a5/iar/inc/tx_port.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ void tx_thread_vfp_disable(void);
382382

383383
#ifdef TX_THREAD_INIT
384384
CHAR _tx_version_id[] =
385-
"Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-A5/IAR Version 6.4.1 *";
385+
"Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-A5/IAR Version 6.4.2 *";
386386
#else
387387
#ifdef TX_MISRA_ENABLE
388388
extern CHAR _tx_version_id[100];

ports/cortex_a53/ac6/inc/tx_port.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ VOID tx_thread_fp_disable(VOID);
369369

370370
#ifdef TX_THREAD_INIT
371371
CHAR _tx_version_id[] =
372-
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.1 *";
372+
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.2 *";
373373
#else
374374
extern CHAR _tx_version_id[];
375375
#endif

ports/cortex_a53/gnu/inc/tx_port.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ VOID tx_thread_fp_disable(VOID);
369369

370370
#ifdef TX_THREAD_INIT
371371
CHAR _tx_version_id[] =
372-
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.1 *";
372+
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.2 *";
373373
#else
374374
extern CHAR _tx_version_id[];
375375
#endif

ports/cortex_a55/ac6/inc/tx_port.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ VOID tx_thread_fp_disable(VOID);
369369

370370
#ifdef TX_THREAD_INIT
371371
CHAR _tx_version_id[] =
372-
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.1 *";
372+
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.2 *";
373373
#else
374374
extern CHAR _tx_version_id[];
375375
#endif

ports/cortex_a55/gnu/inc/tx_port.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ VOID tx_thread_fp_disable(VOID);
369369

370370
#ifdef TX_THREAD_INIT
371371
CHAR _tx_version_id[] =
372-
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.1 *";
372+
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.2 *";
373373
#else
374374
extern CHAR _tx_version_id[];
375375
#endif

ports/cortex_a57/ac6/inc/tx_port.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ VOID tx_thread_fp_disable(VOID);
369369

370370
#ifdef TX_THREAD_INIT
371371
CHAR _tx_version_id[] =
372-
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.1 *";
372+
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.2 *";
373373
#else
374374
extern CHAR _tx_version_id[];
375375
#endif

ports/cortex_a57/gnu/inc/tx_port.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ VOID tx_thread_fp_disable(VOID);
369369

370370
#ifdef TX_THREAD_INIT
371371
CHAR _tx_version_id[] =
372-
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.1 *";
372+
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.2 *";
373373
#else
374374
extern CHAR _tx_version_id[];
375375
#endif

ports/cortex_a5x/ac6/inc/tx_port.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ VOID tx_thread_fp_disable(VOID);
356356

357357
#ifdef TX_THREAD_INIT
358358
CHAR _tx_version_id[] =
359-
"Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-A5x/ARM Version 6.4.1 *";
359+
"Copyright (c) 2024 Microsoft Corporation. * ThreadX Cortex-A5x/ARM Version 6.4.2 *";
360360
#else
361361
extern CHAR _tx_version_id[];
362362
#endif

ports/cortex_a65/ac6/inc/tx_port.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ VOID tx_thread_fp_disable(VOID);
369369

370370
#ifdef TX_THREAD_INIT
371371
CHAR _tx_version_id[] =
372-
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.1 *";
372+
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.2 *";
373373
#else
374374
extern CHAR _tx_version_id[];
375375
#endif

ports/cortex_a65/gnu/inc/tx_port.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ VOID tx_thread_fp_disable(VOID);
369369

370370
#ifdef TX_THREAD_INIT
371371
CHAR _tx_version_id[] =
372-
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.1 *";
372+
"Copyright (c) 2024 Microsoft Corporation. * ThreadX ARMv8-A Version 6.4.2 *";
373373
#else
374374
extern CHAR _tx_version_id[];
375375
#endif

0 commit comments

Comments
 (0)