We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
@vtjnash pointed out this thread safety bug not caught by our tests: #42768 (comment)
This can result in multiple threads corrupting the stack traces from each others' allocs, leading to a corrupted profile.
Fix involves keeping a buffer per thread. EDIT: And/or maybe reusing the existing backtrace buffer in the ptls object. (See the linked thread, above)
ptls
cc @NHDaly
The text was updated successfully, but these errors were encountered:
(Assigned to Pete at Pete's request :).)
Sorry, something went wrong.
vilterp
Successfully merging a pull request may close this issue.
@vtjnash pointed out this thread safety bug not caught by our tests: #42768 (comment)
This can result in multiple threads corrupting the stack traces from each others' allocs, leading to a corrupted profile.
Fix involves keeping a buffer per thread.
EDIT: And/or maybe reusing the existing backtrace buffer in the
ptls
object. (See the linked thread, above)cc @NHDaly
The text was updated successfully, but these errors were encountered: