Merge pull request #6660 from kaspar030/fix_native_thread_yield_higher

cpu: native: fix thread_yield_higher isr_is_in() case
This commit is contained in:
Oleg Hahm 2017-03-02 12:19:34 +01:00 committed by GitHub
commit 1af1727759

View File

@ -225,7 +225,7 @@ void thread_yield_higher(void)
irq_enable(); irq_enable();
} }
else { else {
isr_thread_yield(); sched_context_switch_request = 1;
} }
} }