seccomp_syscall_resolve_name

Resolve a syscall name to a number @param name the syscall name

Resolve the given syscall name to the syscall number. 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
(
const(char)* name
)

Meta