From eb668eb9e0021961230858f9bfa1599646da9a8f Mon Sep 17 00:00:00 2001 From: kenneth <459864689@qq.com> Date: Tue, 15 Jun 2021 15:48:38 +0800 Subject: [PATCH] fix: add API LOS_HwiCreate and LOS_HwDelete MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 新增对外接口LOS_HwiCreate、LOS_HwiDelete close #I3R75F Signed-off-by: kenneth <459864689@qq.com> --- kernel/arch/include/los_interrupt.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kernel/arch/include/los_interrupt.h b/kernel/arch/include/los_interrupt.h index 3fa2fe33..a1244ff1 100644 --- a/kernel/arch/include/los_interrupt.h +++ b/kernel/arch/include/los_interrupt.h @@ -70,6 +70,8 @@ extern VOID __stack_chk_fail(VOID); UINT32 HalIsIntActive(VOID); #define OS_INT_ACTIVE (HalIsIntActive()) #define OS_INT_INACTIVE (!(OS_INT_ACTIVE)) +#define LOS_HwiCreate HalHwiCreate +#define LOS_HwiDelete HalHwiDelete /** * @ingroup los_interrupt