mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
runtime: fix errno sign for some mmap and mincore cases
The caller of mmap expects it to return a positive errno value, but the linux-arm64 and nacl-386 system calls returned a negative errno value. Correct them to negate the errno value. The caller of mincore expects it to return a negative errno value (yes, this is inconsistent), but the linux-mips64x and linux-ppc64x system call returned a positive errno value. Correct them to negate the errno value. Add a test that mmap returns errno with the correct sign. Brad added a test for mincore's errno value in https://golang.org/cl/19457. Fixes #14297. Change-Id: I2b93f32e679bd1eae1c9aef9ae7bcf0ba39521b5 Reviewed-on: https://go-review.googlesource.com/19455 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org> Reviewed-by: Minux Ma <minux@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
This commit is contained in:
parent
70418eb819
commit
cc0a04d351
10 changed files with 69 additions and 16 deletions
|
|
@ -28,8 +28,6 @@ var Exitsyscall = exitsyscall
|
|||
var LockedOSThread = lockedOSThread
|
||||
var Xadduintptr = atomic.Xadduintptr
|
||||
|
||||
var Mincore = mincore
|
||||
|
||||
var FuncPC = funcPC
|
||||
|
||||
var Fastlog2 = fastlog2
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue