From fa1c473a964a7303e2f80e4fe126a4cadb09336b Mon Sep 17 00:00:00 2001 From: zms123456 <85141075+zmshahaha@users.noreply.github.com> Date: Sun, 28 Apr 2024 15:19:50 +0800 Subject: [PATCH] [src][thread]bind cpu fixup (#8872) bind cpu fixup --- src/scheduler_mp.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/scheduler_mp.c b/src/scheduler_mp.c index ef5a3ee935..ee32d9bc60 100644 --- a/src/scheduler_mp.c +++ b/src/scheduler_mp.c @@ -985,6 +985,8 @@ void rt_sched_remove_thread(struct rt_thread *thread) /* remove thread from scheduler ready list */ _sched_remove_thread_locked(thread); + + RT_SCHED_CTX(thread).stat = RT_THREAD_SUSPEND_UNINTERRUPTIBLE; } /* thread status initialization and setting up on startup */