mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
ee5aa536d1
full diff: c990c680b6...6d18c012ae
execute "docker run -it {image name} /bin/sh" no response on mip64el platform;
EpollEvent struct define lack a field named PadFd;
add the field "PadFd";
execute docker run -it {image} /bin/sh for test after rebuilded.
Signed-off-by: liuxiaodong <liuxiaodong@loongson.cn>
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
13 lines
395 B
Go
13 lines
395 B
Go
// 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 wasm
|
|
|
|
package cpu
|
|
|
|
// We're compiling the cpu package for an unknown (software-abstracted) CPU.
|
|
// Make CacheLinePad an empty struct and hope that the usual struct alignment
|
|
// rules are good enough.
|
|
|
|
const cacheLineSize = 0
|