sel4_panicking/count/
mod.rs

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

cfg_if::cfg_if! {
    if #[cfg(target_thread_local)] {
        mod with_tls;
        use with_tls as whether_tls;
    } else {
        mod without_tls;
        use without_tls as whether_tls;
    }
}

pub(crate) use whether_tls::*;