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

..10-Jan-2020-

.gitignoreH A D10-Jan-202044 98

LICENSEH A D10-Jan-20201.5 KiB2622

README.mdH A D10-Jan-2020595 1310

mmap.goH A D10-Jan-20203.6 KiB11863

mmap_unix.goH A D10-Jan-20201,019 5238

mmap_windows.goH A D10-Jan-20204 KiB14498

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