aarch64: idle task loops should be the same for BP and APs

This commit is contained in:
K. Lange 2022-02-22 09:51:56 +09:00
parent 2543e2ce0c
commit c180959f4e

View File

@ -332,7 +332,9 @@ static void _kidle(void) {
static void _kburn(void) {
while (1) {
arch_pause();
#ifndef __aarch64__
switch_next();
#endif
}
}