Introduces Regression for 32 and 64 bit threadx and smp kernel in Debug, MinSizeRel and Release configuration #4

Merged
alex merged 79 commits from feature/test into main 2026-04-02 14:09:29 +01:00
2 changed files with 1 additions and 10 deletions
Showing only changes of commit 5ebcce634a - Show all commits

View File

@@ -8,7 +8,7 @@ endif()
set(THREADX_SMP_CUSTOM_INC set(THREADX_SMP_CUSTOM_INC
${CMAKE_CURRENT_SOURCE_DIR}/inc ${CMAKE_CURRENT_SOURCE_DIR}/inc
${CMAKE_CURRENT_SOURCE_DIR}/../moonlight ${CMAKE_CURRENT_SOURCE_DIR}/../moonlight #needed for aclint (inter process interrupts)
) )
set(THREADX_SMP_CUSTOM_SRC set(THREADX_SMP_CUSTOM_SRC
src/tx_initialize_low_level.S src/tx_initialize_low_level.S
@@ -22,7 +22,6 @@ set(THREADX_SMP_CUSTOM_SRC
src/tx_thread_smp_initialize_wait.S src/tx_thread_smp_initialize_wait.S
src/tx_thread_smp_low_level_initialize.S src/tx_thread_smp_low_level_initialize.S
src/tx_thread_smp_protect.S src/tx_thread_smp_protect.S
src/tx_thread_smp_time_get.c
src/tx_thread_smp_unprotect.S src/tx_thread_smp_unprotect.S
src/tx_thread_stack_build.S src/tx_thread_stack_build.S
src/tx_thread_system_return.S src/tx_thread_system_return.S

View File

@@ -1,8 +0,0 @@
#include "platform.h"
#include "tx_api.h"
#include <aclint.h>
ULONG _tx_thread_smp_time_get(void)
{
return (ULONG)get_aclint_mtime(aclint);
}