xref: /DragonOS/kernel/src/arch/riscv64/time.rs (revision 7a29d4fcbcd89a226289c7bf541c2c78623de3ad)
1 use crate::time::TimeArch;
2 pub struct RiscV64TimeArch;
3 
4 impl TimeArch for RiscV64TimeArch {
5     fn get_cycles() -> usize {
6         unimplemented!("Riscv64TimeArch::get_cycles")
7     }
8 }
9