mod.rs 149 B

1234567
  1. pub mod csr;
  2. /// Returns the current hart (hardware thread) ID.
  3. #[inline]
  4. pub fn current_hartid() -> usize {
  5. riscv::register::mhartid::read()
  6. }