mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 17:24:06 +00:00
Use > rather than == for overflow check in scoped threads.
Co-authored-by: Jacob Lifshay <programmerjake@gmail.com>
This commit is contained in:
parent
c5cb2def06
commit
2c8cc70ea0
@ -29,7 +29,7 @@ impl ScopeData {
|
||||
pub(super) fn increment_n_running_threads(&self) {
|
||||
// We check for 'overflow' with usize::MAX / 2, to make sure there's no
|
||||
// chance it overflows to 0, which would result in unsoundness.
|
||||
if self.n_running_threads.fetch_add(1, Ordering::Relaxed) == usize::MAX / 2 {
|
||||
if self.n_running_threads.fetch_add(1, Ordering::Relaxed) > usize::MAX / 2 {
|
||||
// This can only reasonably happen by mem::forget()'ing many many ScopedJoinHandles.
|
||||
self.decrement_n_running_threads(false);
|
||||
panic!("too many running threads in thread scope");
|
||||
|
Loading…
Reference in New Issue
Block a user