xref: /DragonOS/kernel/crates/kprobe/src/lib.rs (revision fae6e9ade46a52976ad5d099643d51cc20876448)
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