indirect system call NAME syscall - indirect system call LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <sys/syscall.h> /* Definition of SYS_* constants */ #include <u…create a POSIX per-process timer NAME timer_create - create a POSIX per-process timer LIBRARY Real-time library ( librt , -lrt ) SYNOPSIS #include <signal.h> /* Definition of SIGEV…introduction to system calls NAME intro - introduction to system calls DESCRIPTION Section 2 of the manual describes the Linux system calls. A system call is an entry point into th…System V IPC system calls NAME ipc - System V IPC system calls LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <linux/ipc.h> /* Definition of needed constants */ #inclu…create a loadable module entry NAME create_module - create a loadable module entry SYNOPSIS #include <linux/module.h> [[deprecated]] caddr_t create_module(const char * name , size_…load shared library NAME uselib - load shared library SYNOPSIS #include <unistd.h> [[deprecated]] int uselib(const char * library ); DESCRIPTION The system call uselib () serves to…socket system calls NAME socketcall - socket system calls LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <linux/net.h> /* Definition of SYS_* constants */ #include <sy…retrieve exported kernel and module symbols NAME get_kernel_syms - retrieve exported kernel and module symbols SYNOPSIS #include <linux/module.h> [[deprecated]] int get_kernel_syms…create an asynchronous I/O context NAME io_setup - create an asynchronous I/O context LIBRARY Standard C library ( libc , -lc ) Alternatively, Asynchronous I/O library ( libaio , -…wait for a signal NAME sigsuspend, rt_sigsuspend - wait for a signal LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <signal.h> int sigsuspend(const sigset_t * mask ); …wait for a signal NAME sigsuspend, rt_sigsuspend - wait for a signal LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <signal.h> int sigsuspend(const sigset_t * mask ); …obtain handle for a pathname and open file via a handle NAME name_to_handle_at, open_by_handle_at - obtain handle for a pathname and open file via a handle LIBRARY Standard C libra…obtain handle for a pathname and open file via a handle NAME name_to_handle_at, open_by_handle_at - obtain handle for a pathname and open file via a handle LIBRARY Standard C libra…get process identification NAME getpid, getppid - get process identification LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <unistd.h> pid_t getpid(void); pid_t getppi…get process identification NAME getpid, getppid - get process identification LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <unistd.h> pid_t getpid(void); pid_t getppi…return from signal handler and cleanup stack frame NAME sigreturn, rt_sigreturn - return from signal handler and cleanup stack frame LIBRARY Standard C library ( libc , -lc ) SYNOP…return from signal handler and cleanup stack frame NAME sigreturn, rt_sigreturn - return from signal handler and cleanup stack frame LIBRARY Standard C library ( libc , -lc ) SYNOP…query the kernel for various bits pertaining to modules NAME query_module - query the kernel for various bits pertaining to modules SYNOPSIS #include <linux/module.h> [[deprecated]…operations with z/Architecture guarded storage facility NAME s390_guarded_storage - operations with z/Architecture guarded storage facility LIBRARY Standard C library ( libc , -lc …unload a kernel module NAME delete_module - unload a kernel module LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <fcntl.h> /* Definition of O_* constants */ #include …