Terms

What is mmap ?

MMAP mmap (memory map) is for faster read/write of data from/to memory instead of files from disk. If a process is terminated abruptly, memory data has to be saved to a file instead of being lost completely. mmap() creates a…

Read More