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…execute program NAME execve - execute program LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <unistd.h> int execve(const char * pathname , char *const _Nullable argv […get directory entries NAME getdents, getdents64 - get directory entries LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <sys/syscall.h> /* Definition of SYS_* constants…get directory entries NAME getdents, getdents64 - get directory entries LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <sys/syscall.h> /* Definition of SYS_* constants…read directory entry NAME readdir - read directory entry LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <sys/syscall.h> /* Definition of SYS_* constants */ #include <u…manipulate disk quotas NAME quotactl - manipulate disk quotas LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <sys/quota.h> #include <xfs/xqm.h> /* Definition of Q_X* a…compare two processes to determine if they share a kernel resource NAME kcmp - compare two processes to determine if they share a kernel resource LIBRARY Standard C library ( libc …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…close all file descriptors in a given range NAME close_range - close all file descriptors in a given range LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #define _GNU_SOURCE /*…wait for some event on a file descriptor NAME poll, ppoll - wait for some event on a file descriptor LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <poll.h> int poll(s…wait for some event on a file descriptor NAME poll, ppoll - wait for some event on a file descriptor LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <poll.h> int poll(s…truncate a file to a specified length NAME truncate, ftruncate - truncate a file to a specified length LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <unistd.h> int tr…truncate a file to a specified length NAME truncate, ftruncate - truncate a file to a specified length LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <unistd.h> int tr…operations on a process or thread NAME prctl - operations on a process or thread LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <linux/prctl.h> /* Definition of PR_* c…truncate a file to a specified length NAME truncate, ftruncate - truncate a file to a specified length LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <unistd.h> int tr…truncate a file to a specified length NAME truncate, ftruncate - truncate a file to a specified length LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <unistd.h> int tr…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 current working directory NAME getcwd, getwd, get_current_dir_name - get current working directory LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <unistd.h> char *…wait for process to change state NAME wait, waitpid, waitid - wait for process to change state LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <sys/wait.h> pid_t wait(i…