open_coroutine_core/syscall/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
macro_rules! syscall_mod {
    ($($mod_name: ident);*) => {
        $(
            pub use $mod_name::$mod_name;
            mod $mod_name;
        )*
    }
}

#[cfg(unix)]
pub use unix::*;

#[cfg(unix)]
mod unix;

#[cfg(windows)]
pub use windows::*;

#[allow(non_snake_case)]
#[cfg(windows)]
mod windows;