17 lines
366 B
Go
17 lines
366 B
Go
//go:build !windows && !appengine && !plan9 && !js && !wasip1 && !wasi
|
|
// +build !windows,!appengine,!plan9,!js,!wasip1,!wasi
|
|
|
|
package maxminddb
|
|
|
|
import (
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
func mmap(fd, 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)
|
|
}
|