1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

Merge pull request #15236 from benpicco/cpu/cortexm_common_idle_flush

cpu/cortexm_common: flush pipeline before disabling interrupts in idle
This commit is contained in:
Marian Buschsieweke 2020-10-16 22:29:12 +02:00 committed by GitHub
commit 652aac4e57
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -510,5 +510,6 @@ void sched_arch_idle(void)
/* Briefly re-enable IRQs to allow pending interrupts to be serviced and
* have them update the runqueue */
__enable_irq();
__ISB();
__disable_irq();
}