vendor: golang.org/x/sys 52ab431487773bc9dd1b0766228b1cf3944126bf

full diff: c990c680b6...52ab431487

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn
2020-03-07 13:05:28 +01:00
parent ba6796abde
commit b78dfbdfbe
95 changed files with 3285 additions and 500 deletions

9
vendor/golang.org/x/sys/cpu/cpu_linux_noinit.go generated vendored Normal file
View File

@@ -0,0 +1,9 @@
// Copyright 2019 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 linux,!arm,!arm64,!ppc64,!ppc64le,!s390x
package cpu
func doinit() {}

View File

@@ -7,5 +7,3 @@
package cpu
const cacheLineSize = 32
func doinit() {}

View File

@@ -7,5 +7,3 @@
package cpu
const cacheLineSize = 32
func doinit() {}

View File

@@ -7,5 +7,3 @@
package cpu
const cacheLineSize = 64
func doinit() {}

9
vendor/golang.org/x/sys/cpu/cpu_riscv64.go generated vendored Normal file
View File

@@ -0,0 +1,9 @@
// Copyright 2019 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 riscv64
package cpu
const cacheLineSize = 32

View File

@@ -11,5 +11,3 @@ package cpu
// rules are good enough.
const cacheLineSize = 0
func doinit() {}