ostd 0.8.4

Rust OS framework that facilitates the development of and innovation in OS kernels
1
2
3
4
5
6
7
8
9
10
11
// SPDX-License-Identifier: MPL-2.0

//! Multiprocessor Boot Support

pub(crate) fn get_num_processors() -> Option<u32> {
    Some(1)
}

pub(crate) fn bringup_all_aps() {
    // TODO
}