seccomp_data

struct seccomp_data - the format the BPF program executes over. @nr: the system call number @arch: indicates system call convention as an AUDIT_ARCH_* value as defined in <linux/audit.h>. @instruction_pointer: at the time of the system call. @args: up to 6 system call arguments always stored as 64-bit values regardless of the architecture.

version(Posix)
extern (C) nothrow @nogc
struct seccomp_data {}

Members

Variables

arch
uint arch;
Undocumented in source.
args
ulong[6] args;
Undocumented in source.
instruction_pointer
ulong instruction_pointer;
Undocumented in source.
nr
int nr;
Undocumented in source.

Meta