sel4/arch/x86/arch/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
// Copyright 2023, Colias Group, LLC
//
// SPDX-License-Identifier: MIT
//

use sel4_config::sel4_cfg_if;

sel4_cfg_if! {
    if #[sel4_cfg(ARCH_X86_64)] {
        #[path = "x64/mod.rs"]
        mod imp;
    }
}

// HACK for rustfmt
#[cfg(any())]
mod x64;

pub(crate) use imp::*;