git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@14218 27425a3e-05d8-49a3-a47f-9c15f0e5edd8

This commit is contained in:
Giovanni Di Sirio 2021-04-18 06:15:59 +00:00
parent 863dc35522
commit 938c70bd27
1 changed files with 1 additions and 2 deletions

View File

@ -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