mirror of
https://github.com/rcore-os/rCore.git
synced 2024-11-23 00:16:17 +04:00
try to fix interrupt & deadlock on RV32
This commit is contained in:
parent
46f0e85230
commit
2db453556d
@ -10,8 +10,8 @@ pub unsafe fn disable_and_store() -> usize {
|
|||||||
#[cfg(target_arch = "riscv32")]
|
#[cfg(target_arch = "riscv32")]
|
||||||
pub unsafe fn disable_and_store() -> usize {
|
pub unsafe fn disable_and_store() -> usize {
|
||||||
let sstatus: usize;
|
let sstatus: usize;
|
||||||
asm!("csrrci $0, 0x100, 1" : "=r"(sstatus));
|
asm!("csrrci $0, 0x100, 2" : "=r"(sstatus));
|
||||||
sstatus & 1
|
sstatus & 2
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline(always)]
|
#[inline(always)]
|
||||||
|
@ -92,7 +92,10 @@ impl Processor {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub fn tick(&self) {
|
pub fn tick(&self) {
|
||||||
|
let flags = unsafe { interrupt::disable_and_store() };
|
||||||
let need_reschedule = self.manager().tick(self.pid());
|
let need_reschedule = self.manager().tick(self.pid());
|
||||||
|
unsafe { interrupt::restore(flags); }
|
||||||
|
|
||||||
if need_reschedule {
|
if need_reschedule {
|
||||||
self.yield_now();
|
self.yield_now();
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
use core::fmt;
|
use core::fmt;
|
||||||
use log::{self, Level, LevelFilter, Log, Metadata, Record};
|
use log::{self, Level, LevelFilter, Log, Metadata, Record};
|
||||||
use spin::Mutex;
|
use crate::sync::SpinNoIrqLock as Mutex;
|
||||||
use lazy_static::lazy_static;
|
use lazy_static::lazy_static;
|
||||||
|
|
||||||
lazy_static! {
|
lazy_static! {
|
||||||
|
Loading…
Reference in New Issue
Block a user