summaryrefslogtreecommitdiff
path: root/common/inc
diff options
context:
space:
mode:
Diffstat (limited to 'common/inc')
-rw-r--r--common/inc/tx_api.h85
-rw-r--r--common/inc/tx_block_pool.h15
-rw-r--r--common/inc/tx_byte_pool.h15
-rw-r--r--common/inc/tx_event_flags.h15
-rw-r--r--common/inc/tx_initialize.h15
-rw-r--r--common/inc/tx_mutex.h15
-rw-r--r--common/inc/tx_queue.h15
-rw-r--r--common/inc/tx_semaphore.h15
-rw-r--r--common/inc/tx_thread.h22
-rw-r--r--common/inc/tx_timer.h15
-rw-r--r--common/inc/tx_trace.h15
-rw-r--r--common/inc/tx_user_sample.h36
12 files changed, 52 insertions, 226 deletions
diff --git a/common/inc/tx_api.h b/common/inc/tx_api.h
index 4224c7e6..7527c413 100644
--- a/common/inc/tx_api.h
+++ b/common/inc/tx_api.h
@@ -1,10 +1,11 @@
/***************************************************************************
- * Copyright (c) 2024 Microsoft Corporation
- *
+ * Copyright (c) 2024 Microsoft Corporation
+ * Copyright (c) 2026-present Eclipse ThreadX contributors
+ *
* This program and the accompanying materials are made available under the
* terms of the MIT License which is available at
* https://opensource.org/licenses/MIT.
- *
+ *
* SPDX-License-Identifier: MIT
**************************************************************************/
@@ -38,78 +39,6 @@
/* Please note that basic data type definitions and other architecture-*/
/* specific information is contained in the file tx_port.h. */
/* */
-/* RELEASE HISTORY */
-/* */
-/* DATE NAME DESCRIPTION */
-/* */
-/* 05-19-2020 William E. Lamie Initial Version 6.0 */
-/* 09-30-2020 William E. Lamie Modified comment(s), and */
-/* updated product constants, */
-/* added new thread execution */
-/* state TX_PRIORITY_CHANGE, */
-/* added macros for casting */
-/* pointers to ALIGN_TYPE, */
-/* resulting in version 6.1 */
-/* 10-16-2020 William E. Lamie Modified comment(s), and */
-/* increased patch version, */
-/* resulting in version 6.1.1 */
-/* 11-09-2020 Yuxin Zhou Modified comment(s), and */
-/* moved TX_THREAD_GET_SYSTEM_ */
-/* STATE to tx_api.h, */
-/* resulting in version 6.1.2 */
-/* 12-31-2020 William E. Lamie Modified comment(s), and */
-/* increased patch version, */
-/* resulting in version 6.1.3 */
-/* 03-02-2021 Scott Larson Modified comment(s), and */
-/* order defines numerically, */
-/* add option to remove FileX */
-/* pointer, */
-/* resulting in version 6.1.5 */
-/* 04-02-2021 Scott Larson Modified comment(s), and */
-/* update patch number, */
-/* resulting in version 6.1.6 */
-/* 06-02-2021 Yuxin Zhou Modified comment(s), added */
-/* Execution Profile support, */
-/* resulting in version 6.1.7 */
-/* 08-02-2021 Scott Larson Modified comment(s), and */
-/* update patch number, */
-/* resulting in version 6.1.8 */
-/* 10-15-2021 Yuxin Zhou Modified comment(s), */
-/* update patch number, */
-/* resulting in version 6.1.9 */
-/* 01-31-2022 Scott Larson Modified comment(s), */
-/* add unused parameter macro, */
-/* update patch number, */
-/* resulting in version 6.1.10 */
-/* 04-25-2022 Wenhui Xie Modified comment(s), */
-/* optimized the definition of */
-/* TX_TIMER_TICKS_PER_SECOND, */
-/* resulting in version 6.1.11 */
-/* 07-29-2022 Scott Larson Modified comment(s), */
-/* update patch number, */
-/* resulting in version 6.1.12 */
-/* 10-31-2022 Scott Larson Modified comment(s), */
-/* add extension macros, */
-/* update EPK typedef, */
-/* update version numbers, */
-/* resulting in version 6.2.0 */
-/* 03-08-2023 Tiejun Zhou Modified comment(s), */
-/* update patch number, */
-/* resulting in version 6.2.1 */
-/* 10-31-2023 Xiuwen Cai Modified comment(s), */
-/* added option for random */
-/* number stack filling, */
-/* resulting in version 6.3.0 */
-/* 12-31-2023 Tiejun Zhou Modified comment(s), */
-/* update version number, */
-/* resulting in version 6.4.0 */
-/* 03-01-2024 Tiejun Zhou Modified comment(s), */
-/* update version number, */
-/* resulting in version 6.4.1 */
-/* 02-19-2025 Frédéric Desbiens Modified comment(s), */
-/* update version number, */
-/* resulting in version 6.4.2 */
-/* */
/**************************************************************************/
#ifndef TX_API_H
@@ -147,9 +76,9 @@ extern "C" {
#define AZURE_RTOS_THREADX
#define THREADX_MAJOR_VERSION 6
-#define THREADX_MINOR_VERSION 4
-#define THREADX_PATCH_VERSION 5
-#define THREADX_BUILD_VERSION 202504
+#define THREADX_MINOR_VERSION 5
+#define THREADX_PATCH_VERSION 0
+#define THREADX_BUILD_VERSION 202601
#define THREADX_HOTFIX_VERSION ' '
/* Define the following symbol for backward compatibility */
diff --git a/common/inc/tx_block_pool.h b/common/inc/tx_block_pool.h
index 2a8bb51e..89c9dfbe 100644
--- a/common/inc/tx_block_pool.h
+++ b/common/inc/tx_block_pool.h
@@ -1,10 +1,11 @@
/***************************************************************************
- * Copyright (c) 2024 Microsoft Corporation
- *
+ * Copyright (c) 2024 Microsoft Corporation
+ * Copyright (c) 2026-present Eclipse ThreadX contributors
+ *
* This program and the accompanying materials are made available under the
* terms of the MIT License which is available at
* https://opensource.org/licenses/MIT.
- *
+ *
* SPDX-License-Identifier: MIT
**************************************************************************/
@@ -36,14 +37,6 @@
/* including all data types and external references. It is assumed */
/* that tx_api.h and tx_port.h have already been included. */
/* */
-/* RELEASE HISTORY */
-/* */
-/* DATE NAME DESCRIPTION */
-/* */
-/* 05-19-2020 William E. Lamie Initial Version 6.0 */
-/* 09-30-2020 Yuxin Zhou Modified comment(s), */
-/* resulting in version 6.1 */
-/* */
/**************************************************************************/
#ifndef TX_BLOCK_POOL_H
diff --git a/common/inc/tx_byte_pool.h b/common/inc/tx_byte_pool.h
index 8f1050fa..b9f34311 100644
--- a/common/inc/tx_byte_pool.h
+++ b/common/inc/tx_byte_pool.h
@@ -1,10 +1,11 @@
/***************************************************************************
- * Copyright (c) 2024 Microsoft Corporation
- *
+ * Copyright (c) 2024 Microsoft Corporation
+ * Copyright (c) 2026-present Eclipse ThreadX contributors
+ *
* This program and the accompanying materials are made available under the
* terms of the MIT License which is available at
* https://opensource.org/licenses/MIT.
- *
+ *
* SPDX-License-Identifier: MIT
**************************************************************************/
@@ -36,14 +37,6 @@
/* including all data types and external references. It is assumed */
/* that tx_api.h and tx_port.h have already been included. */
/* */
-/* RELEASE HISTORY */
-/* */
-/* DATE NAME DESCRIPTION */
-/* */
-/* 05-19-2020 William E. Lamie Initial Version 6.0 */
-/* 09-30-2020 Yuxin Zhou Modified comment(s), */
-/* resulting in version 6.1 */
-/* */
/**************************************************************************/
#ifndef TX_BYTE_POOL_H
diff --git a/common/inc/tx_event_flags.h b/common/inc/tx_event_flags.h
index 51e99536..6506dd13 100644
--- a/common/inc/tx_event_flags.h
+++ b/common/inc/tx_event_flags.h
@@ -1,10 +1,11 @@
/***************************************************************************
- * Copyright (c) 2024 Microsoft Corporation
- *
+ * Copyright (c) 2024 Microsoft Corporation
+ * Copyright (c) 2026-present Eclipse ThreadX contributors
+ *
* This program and the accompanying materials are made available under the
* terms of the MIT License which is available at
* https://opensource.org/licenses/MIT.
- *
+ *
* SPDX-License-Identifier: MIT
**************************************************************************/
@@ -36,14 +37,6 @@
/* including all data types and external references. It is assumed */
/* that tx_api.h and tx_port.h have already been included. */
/* */
-/* RELEASE HISTORY */
-/* */
-/* DATE NAME DESCRIPTION */
-/* */
-/* 05-19-2020 William E. Lamie Initial Version 6.0 */
-/* 09-30-2020 Yuxin Zhou Modified comment(s), */
-/* resulting in version 6.1 */
-/* */
/**************************************************************************/
#ifndef TX_EVENT_FLAGS_H
diff --git a/common/inc/tx_initialize.h b/common/inc/tx_initialize.h
index 28c7251b..fd944965 100644
--- a/common/inc/tx_initialize.h
+++ b/common/inc/tx_initialize.h
@@ -1,10 +1,11 @@
/***************************************************************************
- * Copyright (c) 2024 Microsoft Corporation
- *
+ * Copyright (c) 2024 Microsoft Corporation
+ * Copyright (c) 2026-present Eclipse ThreadX contributors
+ *
* This program and the accompanying materials are made available under the
* terms of the MIT License which is available at
* https://opensource.org/licenses/MIT.
- *
+ *
* SPDX-License-Identifier: MIT
**************************************************************************/
@@ -36,14 +37,6 @@
/* data types and external references. It is assumed that tx_api.h */
/* and tx_port.h have already been included. */
/* */
-/* RELEASE HISTORY */
-/* */
-/* DATE NAME DESCRIPTION */
-/* */
-/* 05-19-2020 William E. Lamie Initial Version 6.0 */
-/* 09-30-2020 Yuxin Zhou Modified comment(s), */
-/* resulting in version 6.1 */
-/* */
/**************************************************************************/
#ifndef TX_INITIALIZE_H
diff --git a/common/inc/tx_mutex.h b/common/inc/tx_mutex.h
index a3b52386..b0b46c2f 100644
--- a/common/inc/tx_mutex.h
+++ b/common/inc/tx_mutex.h
@@ -1,10 +1,11 @@
/***************************************************************************
- * Copyright (c) 2024 Microsoft Corporation
- *
+ * Copyright (c) 2024 Microsoft Corporation
+ * Copyright (c) 2026-present Eclipse ThreadX contributors
+ *
* This program and the accompanying materials are made available under the
* terms of the MIT License which is available at
* https://opensource.org/licenses/MIT.
- *
+ *
* SPDX-License-Identifier: MIT
**************************************************************************/
@@ -36,14 +37,6 @@
/* including all data types and external references. It is assumed */
/* that tx_api.h and tx_port.h have already been included. */
/* */
-/* RELEASE HISTORY */
-/* */
-/* DATE NAME DESCRIPTION */
-/* */
-/* 05-19-2020 William E. Lamie Initial Version 6.0 */
-/* 09-30-2020 Yuxin Zhou Modified comment(s), */
-/* resulting in version 6.1 */
-/* */
/**************************************************************************/
#ifndef TX_MUTEX_H
diff --git a/common/inc/tx_queue.h b/common/inc/tx_queue.h
index 7074a91e..c8b4122c 100644
--- a/common/inc/tx_queue.h
+++ b/common/inc/tx_queue.h
@@ -1,10 +1,11 @@
/***************************************************************************
- * Copyright (c) 2024 Microsoft Corporation
- *
+ * Copyright (c) 2024 Microsoft Corporation
+ * Copyright (c) 2026-present Eclipse ThreadX contributors
+ *
* This program and the accompanying materials are made available under the
* terms of the MIT License which is available at
* https://opensource.org/licenses/MIT.
- *
+ *
* SPDX-License-Identifier: MIT
**************************************************************************/
@@ -36,14 +37,6 @@
/* including all data types and external references. It is assumed */
/* that tx_api.h and tx_port.h have already been included. */
/* */
-/* RELEASE HISTORY */
-/* */
-/* DATE NAME DESCRIPTION */
-/* */
-/* 05-19-2020 William E. Lamie Initial Version 6.0 */
-/* 09-30-2020 Yuxin Zhou Modified comment(s), */
-/* resulting in version 6.1 */
-/* */
/**************************************************************************/
#ifndef TX_QUEUE_H
diff --git a/common/inc/tx_semaphore.h b/common/inc/tx_semaphore.h
index 6784e58f..baf292bd 100644
--- a/common/inc/tx_semaphore.h
+++ b/common/inc/tx_semaphore.h
@@ -1,10 +1,11 @@
/***************************************************************************
- * Copyright (c) 2024 Microsoft Corporation
- *
+ * Copyright (c) 2024 Microsoft Corporation
+ * Copyright (c) 2026-present Eclipse ThreadX contributors
+ *
* This program and the accompanying materials are made available under the
* terms of the MIT License which is available at
* https://opensource.org/licenses/MIT.
- *
+ *
* SPDX-License-Identifier: MIT
**************************************************************************/
@@ -36,14 +37,6 @@
/* including all data types and external references. It is assumed */
/* that tx_api.h and tx_port.h have already been included. */
/* */
-/* RELEASE HISTORY */
-/* */
-/* DATE NAME DESCRIPTION */
-/* */
-/* 05-19-2020 William E. Lamie Initial Version 6.0 */
-/* 09-30-2020 Yuxin Zhou Modified comment(s), */
-/* resulting in version 6.1 */
-/* */
/**************************************************************************/
#ifndef TX_SEMAPHORE_H
diff --git a/common/inc/tx_thread.h b/common/inc/tx_thread.h
index 8729263d..5ba8b3f5 100644
--- a/common/inc/tx_thread.h
+++ b/common/inc/tx_thread.h
@@ -1,10 +1,11 @@
/***************************************************************************
- * Copyright (c) 2024 Microsoft Corporation
- *
+ * Copyright (c) 2024 Microsoft Corporation
+ * Copyright (c) 2026-present Eclipse ThreadX contributors
+ *
* This program and the accompanying materials are made available under the
* terms of the MIT License which is available at
* https://opensource.org/licenses/MIT.
- *
+ *
* SPDX-License-Identifier: MIT
**************************************************************************/
@@ -36,21 +37,6 @@
/* data types and external references. It is assumed that tx_api.h */
/* and tx_port.h have already been included. */
/* */
-/* RELEASE HISTORY */
-/* */
-/* DATE NAME DESCRIPTION */
-/* */
-/* 05-19-2020 William E. Lamie Initial Version 6.0 */
-/* 09-30-2020 Yuxin Zhou Modified comment(s), */
-/* resulting in version 6.1 */
-/* 11-09-2020 Yuxin Zhou Modified comment(s), and */
-/* moved TX_THREAD_GET_SYSTEM_ */
-/* STATE to tx_api.h, */
-/* resulting in version 6.1.2 */
-/* 10-15-2021 Scott Larson Modified comment(s), improved */
-/* stack check error handling, */
-/* resulting in version 6.1.9 */
-/* */
/**************************************************************************/
#ifndef TX_THREAD_H
diff --git a/common/inc/tx_timer.h b/common/inc/tx_timer.h
index 4703b14d..b49c573e 100644
--- a/common/inc/tx_timer.h
+++ b/common/inc/tx_timer.h
@@ -1,10 +1,11 @@
/***************************************************************************
- * Copyright (c) 2024 Microsoft Corporation
- *
+ * Copyright (c) 2024 Microsoft Corporation
+ * Copyright (c) 2026-present Eclipse ThreadX contributors
+ *
* This program and the accompanying materials are made available under the
* terms of the MIT License which is available at
* https://opensource.org/licenses/MIT.
- *
+ *
* SPDX-License-Identifier: MIT
**************************************************************************/
@@ -36,14 +37,6 @@
/* data types and external references. It is assumed that tx_api.h */
/* and tx_port.h have already been included. */
/* */
-/* RELEASE HISTORY */
-/* */
-/* DATE NAME DESCRIPTION */
-/* */
-/* 05-19-2020 William E. Lamie Initial Version 6.0 */
-/* 09-30-2020 Yuxin Zhou Modified comment(s), */
-/* resulting in version 6.1 */
-/* */
/**************************************************************************/
#ifndef TX_TIMER_H
diff --git a/common/inc/tx_trace.h b/common/inc/tx_trace.h
index dd78580e..d85d5cc3 100644
--- a/common/inc/tx_trace.h
+++ b/common/inc/tx_trace.h
@@ -1,10 +1,11 @@
/***************************************************************************
- * Copyright (c) 2024 Microsoft Corporation
- *
+ * Copyright (c) 2024 Microsoft Corporation
+ * Copyright (c) 2026-present Eclipse ThreadX contributors
+ *
* This program and the accompanying materials are made available under the
* terms of the MIT License which is available at
* https://opensource.org/licenses/MIT.
- *
+ *
* SPDX-License-Identifier: MIT
**************************************************************************/
@@ -35,14 +36,6 @@
/* and structure definitions as well as external references. It is */
/* assumed that tx_api.h and tx_port.h have already been included. */
/* */
-/* RELEASE HISTORY */
-/* */
-/* DATE NAME DESCRIPTION */
-/* */
-/* 05-19-2020 William E. Lamie Initial Version 6.0 */
-/* 09-30-2020 Yuxin Zhou Modified comment(s), */
-/* resulting in version 6.1 */
-/* */
/**************************************************************************/
diff --git a/common/inc/tx_user_sample.h b/common/inc/tx_user_sample.h
index f8d809b5..9621c30c 100644
--- a/common/inc/tx_user_sample.h
+++ b/common/inc/tx_user_sample.h
@@ -1,10 +1,11 @@
/***************************************************************************
- * Copyright (c) 2024 Microsoft Corporation
- *
+ * Copyright (c) 2024 Microsoft Corporation
+ * Copyright (c) 2026-present Eclipse ThreadX contributors
+ *
* This program and the accompanying materials are made available under the
* terms of the MIT License which is available at
* https://opensource.org/licenses/MIT.
- *
+ *
* SPDX-License-Identifier: MIT
**************************************************************************/
@@ -39,33 +40,6 @@
/* Note that all the defines in this file may also be made on the */
/* command line when building ThreadX library and application objects. */
/* */
-/* RELEASE HISTORY */
-/* */
-/* DATE NAME DESCRIPTION */
-/* */
-/* 05-19-2020 William E. Lamie Initial Version 6.0 */
-/* 09-30-2020 Yuxin Zhou Modified comment(s), */
-/* resulting in version 6.1 */
-/* 03-02-2021 Scott Larson Modified comment(s), */
-/* added option to remove */
-/* FileX pointer, */
-/* resulting in version 6.1.5 */
-/* 06-02-2021 Scott Larson Added options for multiple */
-/* block pool search & delay, */
-/* resulting in version 6.1.7 */
-/* 10-15-2021 Yuxin Zhou Modified comment(s), added */
-/* user-configurable symbol */
-/* TX_TIMER_TICKS_PER_SECOND */
-/* resulting in version 6.1.9 */
-/* 04-25-2022 Wenhui Xie Modified comment(s), */
-/* optimized the definition of */
-/* TX_TIMER_TICKS_PER_SECOND, */
-/* resulting in version 6.1.11 */
-/* 10-31-2023 Xiuwen Cai Modified comment(s), */
-/* added option for random */
-/* number stack filling, */
-/* resulting in version 6.3.0 */
-/* */
/**************************************************************************/
#ifndef TX_USER_H
@@ -182,7 +156,7 @@
/* Determine if random number is used for stack filling. By default, ThreadX uses a fixed
pattern for stack filling. When the following is defined, ThreadX uses a random number
- for stack filling. This is effective only when TX_ENABLE_STACK_CHECKING is defined. */
+ for stack filling. This is effective only when TX_ENABLE_STACK_CHECKING is defined. */
/*
#define TX_ENABLE_RANDOM_NUMBER_STACK_FILLING