1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-27 15:31:17 +01:00

cpu: cortexm_common: use thread_yield_higher() in cortexm_isr_end()

This commit is contained in:
Kaspar Schleiser 2017-11-08 17:38:39 +01:00
parent 9529b1a305
commit c9c7cd4951

View File

@ -122,7 +122,7 @@ static inline void cortexm_sleep(int deep)
static inline void cortexm_isr_end(void)
{
if (sched_context_switch_request) {
thread_yield();
thread_yield_higher();
}
}