You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the multicore.rs example, the other HARTs wait for an interrupt before entering main. However it seems as though there could be a race condition if HART 0 sets the interrupt flag to 1 in
In the
multicore.rs
example, the other HARTs wait for an interrupt before enteringmain
. However it seems as though there could be a race condition if HART 0 sets the interrupt flag to 1 inriscv/riscv-rt/examples/multi_core.rs
Line 47 in 95cfb90
riscv/riscv-rt/examples/multi_core.rs
Line 19 in 95cfb90
This would make the interrupt flag be 0, when HART 1 is entering the loop in
riscv/riscv-rt/examples/multi_core.rs
Lines 24 to 29 in 95cfb90
The text was updated successfully, but these errors were encountered: