small cleanup

This commit is contained in:
2026-03-12 15:29:41 +01:00
parent cca56f89c6
commit 5ebcce634a
2 changed files with 1 additions and 10 deletions

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);
}