summaryrefslogtreecommitdiffstats
path: root/third_party/rust/tokio/src/runtime/tests/mod.rs
blob: 123a7e35a3706b75aafa08a22f81de1a30e66273 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
cfg_loom! {
    mod loom_blocking;
    mod loom_oneshot;
    mod loom_pool;
    mod loom_queue;
}

cfg_not_loom! {
    mod queue;

    #[cfg(miri)]
    mod task;
}