From 938c70bd273f910d21834be7d8038a011ceaca2c Mon Sep 17 00:00:00 2001 From: Giovanni Di Sirio Date: Sun, 18 Apr 2021 06:15:59 +0000 Subject: [PATCH] git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@14218 27425a3e-05d8-49a3-a47f-9c15f0e5edd8 --- os/rt/src/chschd.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/os/rt/src/chschd.c b/os/rt/src/chschd.c index aa49bf3c7..5507b5dd7 100644 --- a/os/rt/src/chschd.c +++ b/os/rt/src/chschd.c @@ -405,8 +405,7 @@ thread_t *chSchReadyI(thread_t *tp) { /* Readying up the remote thread and triggering a reschedule on the other core.*/ chSysNotifyInstance(tp->owner); - (void) __sch_ready_behind(tp->owner, tp); - return; + return __sch_ready_behind(tp->owner, tp); } #endif