Просмотр исходного кода

Merge pull request #183 from rust-embedded/fix-nightly-build

`riscv-rt`: Fix nightly builds
Román Cárdenas Rodríguez 1 год назад
Родитель
Сommit
ac437cba2a
2 измененных файлов с 9 добавлено и 1 удалено
  1. 4 0
      riscv-rt/CHANGELOG.md
  2. 5 1
      riscv-rt/src/lib.rs

+ 4 - 0
riscv-rt/CHANGELOG.md

@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
 
 ## [Unreleased]
 
+### Added
+
+- Implementation of `default_mp_hook` when `single-hart` feature is enabled.
+
 ## [v0.12.1] - 2024-01-24
 
 ### Added

+ 5 - 1
riscv-rt/src/lib.rs

@@ -744,10 +744,14 @@ pub static __INTERRUPTS: [Option<unsafe extern "C" fn()>; 12] = [
 pub extern "Rust" fn default_pre_init() {}
 
 /// Default implementation of `_mp_hook` wakes hart 0 and busy-loops all the other harts.
+/// Users can override this function by defining their own `_mp_hook`.
+/// 
+/// # Note
+/// 
+/// If the `single-hart` feature is enabled, `_mp_hook` is not called.
 #[doc(hidden)]
 #[no_mangle]
 #[rustfmt::skip]
-#[cfg(not(feature = "single-hart"))]
 pub extern "Rust" fn default_mp_hook(hartid: usize) -> bool {
     match hartid {
         0 => true,