mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-24 17:27:56 +00:00
vendor in latest containers/storage which contains a fix for when a filesystem that overlayfs is on is ENOSPC. adding pgzip/compress as a new dep for c/s Signed-off-by: baude <bbaude@redhat.com>
23 lines
449 B
Go
23 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
|
|
}
|
|
}
|