syscalls_rust/
syscalls.rs

1//// This module contains all the syscalls needed with their signatures and data types 
2//// This is not an implementation of syscalls in rust. This is just linking the available syscalls using ffi signatures
3
4
5/// This module supports all the 64 bit arch syscalls
6#[cfg(feature = "arch64")]
7pub mod arch64; // x86 64 bit, x86-64 abi
8