mmap (2) Linux Manual Page
mmap, munmap – map or unmap files or devices into memory Synopsis#include <sys/mman.h> void *mmap(void *addr, size_t length, int prot, int flags, int fd, off_t offset); int munmap(void *addr, size_t length);See NOTES for information on feature test macro requirements. Descriptionmmap() creates a new mapping in the virtual address space of the calling process. The starting…
