Query: syscall
OS: linux
Section: 2
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
SYSCALL(2) Linux Programmer's Manual SYSCALL(2)NAMEsyscall - indirect system callSYNOPSIS#define _GNU_SOURCE /* or _BSD_SOURCE or _SVID_SOURCE */ #include <unistd.h> #include <sys/syscall.h> /* For SYS_xxx definitions */ int syscall(int number, ...);DESCRIPTIONsyscall() performs the system call whose assembly language interface has the specified number with the specified arguments. Symbolic con- stants for system calls can be found in the header file <sys/syscall.h>.RETURN VALUEThe return value is defined by the system call being invoked. In general, a 0 return value indicates success. A -1 return value indicates an error, and an error code is stored in errno.NOTESsyscall() first appeared in 4BSD.EXAMPLE#define _GNU_SOURCE #include <unistd.h> #include <sys/syscall.h> #include <sys/types.h> int main(int argc, char *argv[]) { pid_t tid; tid = syscall(SYS_gettid); }SEE ALSO_syscall(2), intro(2), syscalls(2)COLOPHONThis page is part of release 3.27 of the Linux man-pages project. A description of the project, and information about reporting bugs, can be found at http://www.kernel.org/doc/man-pages/. Linux 2007-07-26 SYSCALL(2)
Related Man Pages |
---|
syscall(3ucb) - sunos |
syscall(3ucb) - mojave |
syscall(3ucb) - v7 |
syscall(3ucb) - xfree86 |
syscall(3ucb) - posix |
Similar Topics in the Unix Linux Community |
---|
how to read an APAR descr |
linux include files |
Process on CPU inside syscall |
Adding our system call Fedora 18 -new syscall |
Download file with socket syscall |