mirror of
https://github.com/golang/go
synced 2024-11-19 12:54:45 -07:00
cc8809238b
The caller of epollctl expects it to return a negative errno value, but it returns a positive errno value on mips, mips64 and ppc64. The change fixes this. Updates #23446 Change-Id: Ie6372eca6c23de21964caaaa433c9a45ef93531e Reviewed-on: https://go-review.googlesource.com/89235 Reviewed-by: Carlos Eduardo Seo <cseo@linux.vnet.ibm.com> Reviewed-by: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
17 lines
387 B
Go
17 lines
387 B
Go
// Copyright 2015 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.
|
|
|
|
// Export guts for testing.
|
|
|
|
package runtime
|
|
|
|
import "unsafe"
|
|
|
|
var NewOSProc0 = newosproc0
|
|
var Mincore = mincore
|
|
|
|
func Epollctl(epfd, op, fd int32, ev unsafe.Pointer) int32 {
|
|
return epollctl(epfd, op, fd, (*epollevent)(ev))
|
|
}
|