From 96eef546420f37288cd0f427e84724b486b01c74 Mon Sep 17 00:00:00 2001 From: lizzie Date: Wed, 3 Sep 2025 18:20:11 +0000 Subject: [PATCH] [nce] fix linux build Signed-off-by: lizzie --- src/core/arm/nce/arm_nce.s | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/arm/nce/arm_nce.s b/src/core/arm/nce/arm_nce.s index 58337e7e74..44e0635346 100644 --- a/src/core/arm/nce/arm_nce.s +++ b/src/core/arm/nce/arm_nce.s @@ -71,8 +71,8 @@ _ZN4Core6ArmNce37ReturnToRunCodeByExceptionLevelChangeEiPv: mov x1, #(ReturnToRunCodeByExceptionLevelChangeSignal) #ifdef __APPLE__ /* I can never be happy, why no tkill in mach kernel? Ugh ... */ - /* Signature: 43040 AUE_PTHREADKILL ALL { int __pthread_kill(int thread_port, int sig); } */ - mov x16, #(43040) + /* Signature: 328 AUE_PTHREADKILL ALL { int __pthread_kill(int thread_port, int sig); } */ + mov x16, #(328) #else /* Signature: int tgkill(pid_t tgid, pid_t tid, int sig); */ mov x8, #(__NR_tkill)