• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.gitignoreH A D20-Mar-201744

LICENSEH A D20-Mar-20171.5 KiB

README.mdH A D20-Mar-2017595

mmap.goH A D20-Mar-20173.6 KiB

mmap_test.goH A D20-Mar-20173.2 KiB

mmap_unix.goH A D20-Mar-20171.4 KiB

mmap_windows.goH A D20-Mar-20173.7 KiB

msync_netbsd.goH A D20-Mar-2017214

msync_unix.goH A D20-Mar-2017320

README.md

1mmap-go
2=======
3
4mmap-go is a portable mmap package for the [Go programming language](http://golang.org).
5It has been tested on Linux (386, amd64), OS X, and Windows (386). It should also
6work on other Unix-like platforms, but hasn't been tested with them. I'm interested
7to hear about the results.
8
9I haven't been able to add more features without adding significant complexity,
10so mmap-go doesn't support mprotect, mincore, and maybe a few other things.
11If you're running on a Unix-like platform and need some of these features,
12I suggest Gustavo Niemeyer's [gommap](http://labix.org/gommap).
13