1
0
mirror of https://github.com/rancher/os.git synced 2025-08-18 23:09:04 +00:00
os/vendor/github.com/SvenDowideit/cpuid/detect_ref.go
Sven Dowideit 60ac78b816 vendored cpuid
Signed-off-by: Sven Dowideit <SvenDowideit@home.org.au>
2017-06-15 15:56:16 +10:00

24 lines
449 B
Go

// Copyright (c) 2015 Klaus Post, released under MIT License. See LICENSE file.
// +build !amd64,!386 gccgo
package cpuid
func initCPU() {
cpuid = func(op uint32) (eax, ebx, ecx, edx uint32) {
return 0, 0, 0, 0
}
cpuidex = func(op, op2 uint32) (eax, ebx, ecx, edx uint32) {
return 0, 0, 0, 0
}
xgetbv = func(index uint32) (eax, edx uint32) {
return 0, 0
}
rdtscpAsm = func() (eax, ebx, ecx, edx uint32) {
return 0, 0, 0, 0
}
}