1
0
mirror of https://github.com/Luzifer/envrun.git synced 2024-09-20 08:02:59 +00:00
envrun/vendor/golang.org/x/sys/windows/race0.go
Knut Ahlers 0d0e1d0c0b
Update vendors
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2018-06-01 17:34:46 +02:00

26 lines
450 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 windows,!race
package windows
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) {
}