seccomp_syscall_resolve_name_arch

Resolve a syscall name to a number @param arch_token the architecture token, e.g. SCMP_ARCH_* @param name the syscall name

Resolve the given syscall name to the syscall number for the given architecture. Returns the syscall number on success, including negative pseudo syscall numbers (e.g. PseudoSyscall.*); returns __NR_SCMP_ERROR on failure.

version(Posix)
extern (C) nothrow @nogc
int
seccomp_syscall_resolve_name_arch
(,
const(char)* name
)

Meta