Macro rustix::backend::arch::syscall_always_asm

source ยท
macro_rules! syscall_always_asm {
    ($nr:ident) => { ... };
    ($nr:ident, $a0:expr) => { ... };
    ($nr:ident, $a0:expr, $a1:expr) => { ... };
    ($nr:ident, $a0:expr, $a1:expr, $a2:expr) => { ... };
    ($nr:ident, $a0:expr, $a1:expr, $a2:expr, $a3:expr) => { ... };
    ($nr:ident, $a0:expr, $a1:expr, $a2:expr, $a3:expr, $a4:expr) => { ... };
    ($nr:ident, $a0:expr, $a1:expr, $a2:expr, $a3:expr, $a4:expr, $a5:expr) => { ... };
    ($nr:ident, $a0:expr, $a1:expr, $a2:expr, $a3:expr, $a4:expr, $a5:expr, $a6:expr) => { ... };
}