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.
SemaphoreGuard::acquire_arc
future would busy wait under certain conditions (don't busy wait in SemaphoreGuard::acquire_arc #42).Semaphore::add_permits()
function to increase the number of available permits on the semaphore (AddSemaphore::add_permits()
#44).RwLockReadGuard
covariant over its lifetime (MakeRwLockReadGuard
covariant #45)RwLockReadGuardArc
,RwLockWriteGuardArc
, and other reference counted guards for theRwLock
type (Add reference-counted versions ofRwLock
guards #47).Send
/Sync
bounds on certain future types (LoosenSend
/Sync
bounds on futures #48).MutexGuardArc::source
function allowing the user to drop an object in a different thread than the one it was acquired in (Fix UB inMutexGuardArc::source
#50). This is a breaking change, but in the name of soundness. Therefore it doesn't break any valid behavior.wasm64
(Replacetarget_os = "wasm64"
withtarget_arch = "wasm64"
#51).