nc 0.9.7

Access system calls directly
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/// System V IPC system calls.
pub unsafe fn ipc(
    call: u32,
    first: i32,
    second: i32,
    third: i32,
    ptr: usize,
    fifth: isize,
) -> Result<(), Errno> {
    let call = call as usize;
    let first = first as usize;
    let second = second as usize;
    let third = third as usize;
    let fifth = fifth as usize;
    syscall6(SYS_IPC, call, first, second, third, ptr, fifth).map(drop)
}