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

..03-May-2022-

.gitignoreH A D15-Dec-201844

LICENSEH A D15-Dec-20181.5 KiB

README.mdH A D15-Dec-2018595

mmap.goH A D15-Dec-20183.6 KiB

mmap_test.goH A D15-Dec-20183.2 KiB

mmap_unix.goH A D15-Dec-20181,019

mmap_windows.goH A D15-Dec-20184 KiB

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