dnscrypt-proxy/vendor/golang.org/x/sys/unix/mmap_nomremap.go

14 lines
343 B
Go
Raw Normal View History

2023-08-07 17:32:25 +02:00
// Copyright 2023 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
2024-04-15 12:36:21 +02:00
//go:build aix || darwin || dragonfly || freebsd || openbsd || solaris || zos
2023-08-07 17:32:25 +02:00
package unix
var mapper = &mmapper{
active: make(map[*byte][]byte),
mmap: mmap,
munmap: munmap,
}