3.1.2.1. MMap And MUnmap System Calls

void *mmap (
  void *start,
  size_t length,
  int prot,
  int flags,
  int fd,
  off_t offset);

int munmap (
  void *start,
  size_t length);