1
2
3
4
5
6
7
8
9
#[cfg(feature = "std")]
extern crate std;

pub fn spin() {
    #[cfg(not(feature = "std"))]
    core::hint::spin_loop();
    #[cfg(feature = "std")]
    std::thread::yield_now();
}