-
Notifications
You must be signed in to change notification settings - Fork 17.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
runtime: usleep() does not work on Linux 386 #21518
Comments
The CL that changed the linked function was not originally in go1.8, but it was cherrypicked here: https://go-review.googlesource.com/c/44002 It's also in go1.9rc2. cc @aclements |
Change https://golang.org/cl/56850 mentions this issue: |
Re-opening for cherry-pick to release branch. |
Change https://golang.org/cl/56891 mentions this issue: |
…econds parameter for pselect6 Fixes #21518 Change-Id: Idd67e3f0410d0ce991b34dcc0c8f15e0d5c529c9 Reviewed-on: https://go-review.googlesource.com/56891 Run-TryBot: Austin Clements <austin@google.com> Reviewed-by: Petrica Voicu <pvoicu@paypal.com> Reviewed-by: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
go1.9 cherrypick was merged: http://golang.org/cl/56891, so I'm closing this. |
Thanks for fixing this bug, I was going crazy over |
Change https://golang.org/cl/70838 mentions this issue: |
…econds parameter for pselect6 Fixes #21518 Change-Id: Idd67e3f0410d0ce991b34dcc0c8f15e0d5c529c9 Reviewed-on: https://go-review.googlesource.com/56850 Reviewed-by: Ian Lance Taylor <iant@golang.org> Reviewed-by: Austin Clements <austin@google.com> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-on: https://go-review.googlesource.com/70838 Run-TryBot: Russ Cox <rsc@golang.org>
Please answer these questions before submitting your issue. Thanks!
What version of Go are you using (
go version
)?go1.8.3 linux/386
What operating system and processor architecture are you using (
go env
)?GOARCH="386"
GOHOSTARCH="386"
GOHOSTOS="linux"
GOOS="linux"
What did you do?
It is internal function to the runtime package, so I cannot provide a test code to reproduce.
To reproduce, someone needs to compile any application for linux/386 and strace the second thread
What did you expect to see?
pselect6(0, NULL, NULL, NULL, {0, 20000}, 0) = 0 (Timeout)
What did you see instead?
I see pselect6(0, NULL, NULL, NULL, {0, 0}, 0) = 0 (Timeout)
runtime.usleep always sets the nanosecond parameter to 0. The fix is at line https://go.googlesource.com/go/+/master/src/runtime/sys_linux_386.s#103, it should be "MOVL AX, 4(SP)".
The text was updated successfully, but these errors were encountered: