-
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: data race on stack object when using arena on darwin arm64 #61835
Comments
This race can also be reproduced on linux-arm64. |
We have no plans to lift this restriction in the near future. |
Oops, just kidding. Rereading your code I think I misunderstood. I'll take a closer look. Sorry about that. |
OK, I suspect this is due to the fact that in
I'm surprised that stacks are being allocated in what was user arena address space, but maybe I'm misremembering or there's a bug. At the very least, I think I found a double |
I have printed the address space when allocating arena chunk and stack. I found that the user arena address space is always reused for arena and never recycled for stack or heap. The address of the race data is never been in an arena chunk. I also noticed the double By the way, I haven't see |
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
Yes
What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do?
test7.go:
run with race:
What did you expect to see?
No race.
What did you see instead?
The text was updated successfully, but these errors were encountered: