Ian Howell 0bd56907bf Update to use client-go v10.0.0
This removes dependencies on the stale v1.5.1 client-go and updates
the project to work with the current v10.0.0 release.

This change will make it easier to implement new CRDs which use more
recent versions of client-go
2018-12-13 09:50:12 -06:00

26 lines
505 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 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) {
}