ax-task 0.7.0

OS-independent IRQ-safe SMP task scheduling core
Documentation
1
2
3
4
5
6
7
8
9
10
#[cfg(any(test, doctest, all(feature = "host-test", not(target_os = "none"))))]
pub(super) fn emit_byte(byte: u8) {
    std::eprint!("{}", byte as char);
}

#[cfg(all(
    not(any(test, doctest, all(feature = "host-test", not(target_os = "none")))),
    not(target_arch = "riscv64")
))]
pub(super) fn emit_byte(_byte: u8) {}