2018-01-25 13:08:43 +00:00
|
|
|
// Copyright 2012 The Go Authors. All rights reserved.
|
2016-06-14 16:17:44 +00:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2019-06-09 07:24:20 +00:00
|
|
|
// +build aix darwin,!race linux,!race freebsd,!race netbsd openbsd solaris dragonfly
|
2016-06-14 16:17:44 +00:00
|
|
|
|
2018-01-25 13:08:43 +00:00
|
|
|
package unix
|
2016-06-14 16:17:44 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"unsafe"
|
|
|
|
)
|
|
|
|
|
|
|
|
const raceenabled = false
|
|
|
|
|
|
|
|
func raceAcquire(addr unsafe.Pointer) {
|
|
|
|
}
|
|
|
|
|
|
|
|
func raceReleaseMerge(addr unsafe.Pointer) {
|
|
|
|
}
|
|
|
|
|
|
|
|
func raceReadRange(addr unsafe.Pointer, len int) {
|
|
|
|
}
|
|
|
|
|
|
|
|
func raceWriteRange(addr unsafe.Pointer, len int) {
|
|
|
|
}
|