Move and better-document waiting for thread exit#2839
Merged
sporksmith merged 1 commit intoshadow:mainfrom Apr 5, 2023
Merged
Conversation
ba13e36 to
79b344b
Compare
stevenengler
approved these changes
Apr 5, 2023
This moves waiting for thread-exit from Process to ManagedThread, where it more logically belongs. It also adds a check in ManagedThread's Drop implementation to validate that we never drop it while the native thread is still running, and adds documentation about why this is important - to prevent memory corruption due to shared memory regions being deallocated and reused. This also fixes a bug - Before we *weren't* waiting for the thread to exit if the `clear_child_tid` attribute wasn't set. I belive this was a race condition, but in practice I think most higher level thread APIs (e.g. libc's `pthread` and Rust's `std::thread`) use this attribute, so wouldn't have wouldn't have been affected.
79b344b to
44ada8c
Compare
Contributor
Author
|
On one last look I realized that while iterating on this I'd somehow dropped the documentation I'd added about why it's important not to drop ManagedThread while the native thread is still running 🤦 . Added this back in and on further reflection changed the drop implementation to always panic if the native thread is still running at drop time. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This moves waiting for thread-exit from
ProcesstoManagedThread, where it more logically belongs. It also adds a check inManagedThread'sDropimplementation to validate that we never drop it while the native thread is still running, and adds documentation about why this is important - to prevent memory corruption due to shared memory regions being deallocated and reused.This also fixes a bug - Before we weren't waiting for the thread to exit if the
clear_child_tidattribute wasn't set. I belive this was a race condition, but in practice I think most higher level thread APIs (e.g. libc'spthreadand Rust'sstd::thread) use this attribute, so wouldn't have wouldn't have been affected.