Skip to content

cmjones/jos-mmap

Repository files navigation

JOS mmap() Library

This is a POSIX-compliant implementation of the mmap() library, built on top of JOS, a exokernel-style operating system.

mmap is a method of memory-mapped I/O, which allows user programs to map a memory object, such a partial or complete file, to their environment's virtual address space. Pages are mapped lazily and are retrieved on-demand.


void *mmap(void *addr, size_t len, int prot, int flags, int fd, off_t off);
int munmap(void *addr, size_t len);

About

mmap implementation for 6.828 on JOS

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published