|
NAMEsysdecode_syscallnames —
lookup name of system calls
LIBRARYSystem Argument Decoding Library (libsysdecode, -lsysdecode)SYNOPSIS#include <sys/types.h>
#include <stdbool.h>
#include <sysdecode.h>
const char *
DESCRIPTIONThis function returns a pointer to the name of a system call identified by code for the process ABI abi. If code specifies an unknown system call or abi is an unsupported ABI,sysdecode_syscallnames returns
NULL .
For the list of supported ABIs, see sysdecode(3). RETURN VALUESThesysdecode_syscallnames function returns a pointer to
a string on success or NULL if either
code or ABI is invalid .
SEE ALSOsysdecode(3), sysdecode_abi_to_freebsd_errno(3)
Visit the GSP FreeBSD Man Page Interface. |