extern struct data [src]

Fields

nr: c_intThe system call number.
arch: u32The CPU architecture/system call convention. One of the values defined in std.os.linux.AUDIT.
instruction_pointer: u64
arg0: u64
arg1: u64
arg2: u64
arg3: u64
arg4: u64
arg5: u64

Source

pub const data = extern struct { /// The system call number. nr: c_int, /// The CPU architecture/system call convention. /// One of the values defined in `std.os.linux.AUDIT`. arch: u32, instruction_pointer: u64, arg0: u64, arg1: u64, arg2: u64, arg3: u64, arg4: u64, arg5: u64, }