2023-08-23 17:32:53 +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-20 09:40:17 +02:00
|
|
|
//go:build aix || darwin || dragonfly || freebsd || openbsd || solaris || zos
|
2023-08-23 17:32:53 +02:00
|
|
|
|
|
|
|
package unix
|
|
|
|
|
|
|
|
var mapper = &mmapper{
|
|
|
|
active: make(map[*byte][]byte),
|
|
|
|
mmap: mmap,
|
|
|
|
munmap: munmap,
|
|
|
|
}
|