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 18 additions and 0 deletions
Showing only changes of commit a75db78425 - Show all commits

View File

@@ -0,0 +1,12 @@
#ifndef _DEVICES_ACLINT_IPI
#define _DEVICES_ACLINT_IPI
#include "gen/aclint.h"
#include "platform.h"
#include <stdint.h>
static void send_ipi(uint32_t target_core)
{
set_aclint_msip(aclint, target_core, 1);
}
#endif /* _DEVICES_ACLINT_IPI */

View File

@@ -0,0 +1,6 @@
#include <aclint_ipi.h>
#include <tx_port.h>
void _tx_thread_smp_core_preempt(UINT target_core)
{
send_ipi(target_core);
}