-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Task local storage leaks memory #6039
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
Labels
A-runtime
Area: std's runtime and "pre-main" init for handling backtraces, unwinds, stack overflows
Comments
brson
added a commit
to brson/rust
that referenced
this issue
Apr 24, 2013
Fixed |
I'm not sure this has landed. |
This has landed now. |
@Aatch Can you point to the revision? These are helpful for tackling down regressions. |
flip1995
pushed a commit
to flip1995/rust
that referenced
this issue
Dec 6, 2020
…ors-lint, r=llogiq Add suspicious_operation_groupings lint This is my (<del> currently WIP </del>) attempt to close rust-lang#6039. changelog: Added `suspicious_operation_groupings` lint.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
A-runtime
Area: std's runtime and "pre-main" init for handling backtraces, unwinds, stack overflows
The recent conversion from
reinterpret_cast
totransmute
introduced a memory leak to TLS. It does not reveal itself though because the box annihilator happily destroys the leaked boxes. In my branch, newsched has TLS but does not have the annihilator, so I'm seeing leaks.Took all afternoon to figure that out. I'll have a fix soon.
The text was updated successfully, but these errors were encountered: