rust-raspberrypi-OS-tutorials/08_timestamps/src/cpu/smp.rs

11 lines
266 B
Rust
Raw Normal View History

2020-03-28 12:25:50 +00:00
// SPDX-License-Identifier: MIT OR Apache-2.0
//
2021-01-01 10:28:32 +00:00
// Copyright (c) 2018-2021 Andre Richter <andre.o.richter@gmail.com>
2020-03-28 12:25:50 +00:00
//! Symmetric multiprocessing.
#[cfg(target_arch = "aarch64")]
#[path = "../_arch/aarch64/cpu/smp.rs"]
mod arch_cpu_smp;
pub use arch_cpu_smp::*;