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 /*…close a file descriptor NAME close - close a file descriptor LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <unistd.h> int close(int fd ); DESCRIPTION close () closes …Seccomp user-space notification mechanism NAME seccomp_unotify - Seccomp user-space notification mechanism LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <linux/seccom…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…duplicate a file descriptor NAME dup, dup2, dup3 - duplicate a file descriptor LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <unistd.h> int dup(int oldfd ); int dup2(…duplicate a file descriptor NAME dup, dup2, dup3 - duplicate a file descriptor LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <unistd.h> int dup(int oldfd ); int dup2(…duplicate a file descriptor NAME dup, dup2, dup3 - duplicate a file descriptor LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <unistd.h> int dup(int oldfd ); int dup2(…open an epoll file descriptor NAME epoll_create, epoll_create1 - open an epoll file descriptor LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <sys/epoll.h> int epoll_c…open an epoll file descriptor NAME epoll_create, epoll_create1 - open an epoll file descriptor LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <sys/epoll.h> int epoll_c…add, remove, or modify an fanotify mark on a filesystem object NAME fanotify_mark - add, remove, or modify an fanotify mark on a filesystem object LIBRARY Standard C library ( libc…create pipe NAME pipe, pipe2 - create pipe LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <unistd.h> int pipe(int pipefd [2]); #define _GNU_SOURCE /* See feature_test_…create pipe NAME pipe, pipe2 - create pipe LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <unistd.h> int pipe(int pipefd [2]); #define _GNU_SOURCE /* See feature_test_…synchronous I/O multiplexing NAME select, pselect - synchronous I/O multiplexing LIBRARY Standard C library ( libc , -lc ) SYNOPSIS See select (2) DESCRIPTION The select () and pse…create a file descriptor for event notification NAME eventfd - create a file descriptor for event notification LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <sys/even…create a file descriptor for event notification NAME eventfd - create a file descriptor for event notification LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <sys/even…create a file descriptor for accepting signals NAME signalfd - create a file descriptor for accepting signals LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <sys/signa…create a file descriptor for accepting signals NAME signalfd - create a file descriptor for accepting signals LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <sys/signa…create an anonymous RAM-based file to access secret memory regions NAME memfd_secret - create an anonymous RAM-based file to access secret memory regions LIBRARY Standard C library…terminate the calling process NAME _exit, _Exit - terminate the calling process LIBRARY Standard C library ( libc , -lc ) SYNOPSIS #include <unistd.h> [[noreturn]] void _exit(int s…