7 Commits

Author SHA1 Message Date
Frédéric Desbiens
4b6e8100d9 Merge commit from fork
Fix: Return 0u when no counters available
2026-01-09 09:38:16 -05:00
Frédéric Desbiens
a9b31c3102 Merge pull request #495 from eclipse-threadx/dev
Merge changes ahead of the v6.4.5.202504 release
2026-01-09 09:36:27 -05:00
Frédéric Desbiens
5c58767c5d Updated the version number 2026-01-09 09:33:14 -05:00
Frédéric Desbiens
d24ef8db37 Updated the version number 2026-01-09 09:31:57 -05:00
Frédéric Desbiens
44fadf7143 Merge pull request #478 from ayedm1/fix_typo
fix typo TX_BYTE_POOL_DELAY_VALUE  instead of TX_BTYE_POOL_DELAY_VALUE
2025-11-27 17:05:17 -05:00
MAY
a9558def77 fix typo TX_BYTE_POOL_DELAY_VALUE instead of TX_BTYE_POOL_DELAY_VALUE 2025-11-25 19:33:46 +01:00
nopnopnop-lavine
c09b444792 Fix: Return 0u when no counters available 2025-11-18 14:43:17 +08:00
3 changed files with 14 additions and 13 deletions

View File

@@ -148,8 +148,8 @@ extern "C" {
#define AZURE_RTOS_THREADX #define AZURE_RTOS_THREADX
#define THREADX_MAJOR_VERSION 6 #define THREADX_MAJOR_VERSION 6
#define THREADX_MINOR_VERSION 4 #define THREADX_MINOR_VERSION 4
#define THREADX_PATCH_VERSION 3 #define THREADX_PATCH_VERSION 5
#define THREADX_BUILD_VERSION 202503 #define THREADX_BUILD_VERSION 202504
#define THREADX_HOTFIX_VERSION ' ' #define THREADX_HOTFIX_VERSION ' '
/* Define the following symbol for backward compatibility */ /* Define the following symbol for backward compatibility */

View File

@@ -135,9 +135,10 @@ extern "C" {
#ifndef TX_BYTE_POOL_MULTIPLE_BLOCK_SEARCH #ifndef TX_BYTE_POOL_MULTIPLE_BLOCK_SEARCH
#define TX_BYTE_POOL_MULTIPLE_BLOCK_SEARCH 20 #define TX_BYTE_POOL_MULTIPLE_BLOCK_SEARCH 20
#endif #endif
#ifndef TX_BTYE_POOL_DELAY_VALUE
#ifndef TX_BYTE_POOL_DELAY_VALUE
#define TX_BYTE_POOL_DELAY_VALUE 3 #define TX_BYTE_POOL_DELAY_VALUE 3
#endif #endif /* TX_BYTE_POOL_DELAY_VALUE */
/* Define basic constants for the ThreadX kernel. */ /* Define basic constants for the ThreadX kernel. */
@@ -149,8 +150,8 @@ extern "C" {
#define AZURE_RTOS_THREADX #define AZURE_RTOS_THREADX
#define THREADX_MAJOR_VERSION 6 #define THREADX_MAJOR_VERSION 6
#define THREADX_MINOR_VERSION 4 #define THREADX_MINOR_VERSION 4
#define THREADX_PATCH_VERSION 3 #define THREADX_PATCH_VERSION 5
#define THREADX_BUILD_VERSION 202503 #define THREADX_BUILD_VERSION 202504
#define THREADX_HOTFIX_VERSION ' ' #define THREADX_HOTFIX_VERSION ' '

View File

@@ -7751,7 +7751,7 @@ UINT index;
if (index >= OSEK_MAX_COUNTERS) if (index >= OSEK_MAX_COUNTERS)
{ {
/* No more Counters available - user configuration error. */ /* No more Counters available - user configuration error. */
return ((CounterType) E_OS_SYS_STACK); return ((CounterType) 0u);
} }
/* Found one. */ /* Found one. */