mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
826da28efa
updates golang.org/x/sys to 90868a75fefd03942536221d7c0e2f84ec62a668, which adds support for building on windows/arm. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
25 lines
509 B
Go
25 lines
509 B
Go
// Copyright 2012 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.
|
|
|
|
// +build aix darwin,!race linux,!race freebsd,!race netbsd openbsd solaris dragonfly
|
|
|
|
package unix
|
|
|
|
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) {
|
|
}
|