1use super::TrapFrame; 2use config::Vm; 3 4/// # Interupt safety 5/// This function can be called from interupt handler. 6pub fn interrupt_handler(_: &Vm, _: &mut TrapFrame) { 7 // TODO: Implement a virtual device with GDB stub. 8 todo!() 9}