создать файловый дескриптор для обработки ошибок страниц в пользовательском пространстве (create a file descriptor for handling page faults in user space)
Синопсис (Synopsis)
#include <fcntl.h> /* Definition of O_* constants */
#include <sys/syscall.h> /* Definition of SYS_* constants */
#include <unistd.h>
int syscall(SYS_userfaultfd, int flags);
Note: glibc provides no wrapper for userfaultfd(), necessitating
the use of syscall(2).