1 use system_error::SystemError; 2 3 use crate::smp::SMPArch; 4 5 pub struct RiscV64SMPArch; 6 7 impl SMPArch for RiscV64SMPArch { 8 fn prepare_cpus() -> Result<(), SystemError> { 9 todo!() 10 } 11 12 fn init() -> Result<(), SystemError> { 13 todo!() 14 } 15 } 16