MUNMAP
remove a mapping
SYNOPSIS
#include <sys/mman.h>
int
munmap(void *addr size_t len);
DESCRIPTION
The munmap system call deletes the mappings for the specified address range, and causes further references to addresses within the range to generate invalid memory references.
Comments