summaryrefslogtreecommitdiff
path: root/vendor/github.com/oschwald/maxminddb-golang/mmap_unix.go
blob: d898d25704e97afccfac4b96823eb6132eed5295 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// +build !windows,!appengine

package maxminddb

import (
	"golang.org/x/sys/unix"
)

func mmap(fd int, length int) (data []byte, err error) {
	return unix.Mmap(fd, 0, length, unix.PROT_READ, unix.MAP_SHARED)
}

func munmap(b []byte) (err error) {
	return unix.Munmap(b)
}