xref: /DragonOS/kernel/crates/kprobe/src/lib.rs (revision 55e6f0b65f91b32638fd56581f711a816eccdcd1)
1 #![cfg_attr(target_arch = "riscv64", feature(riscv_ext_intrinsics))]
2 #![no_std]
3 extern crate alloc;
4 
5 mod arch;
6 
7 pub use arch::*;
8