diff options
author | Abseil Team <absl-team@google.com> | 2023-05-08 01:41:38 -0700 |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2023-05-08 01:42:15 -0700 |
commit | 7e22b3022ea5ec584298135811e119b3e65789bc (patch) | |
tree | 1daf1bc3032013e7b203bbd5d7f6fdd2a95db78d /absl/synchronization/internal | |
parent | 419b54d4870e31ae2442b7f453c7b8d5b8c08026 (diff) |
Nop change.
PiperOrigin-RevId: 530238518
Change-Id: I2bfca582c0734f7e6943c5359730a2857809e2d2
Diffstat (limited to 'absl/synchronization/internal')
-rw-r--r-- | absl/synchronization/internal/futex_waiter.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/absl/synchronization/internal/futex_waiter.cc b/absl/synchronization/internal/futex_waiter.cc index 7c07fbe2..87eb3b23 100644 --- a/absl/synchronization/internal/futex_waiter.cc +++ b/absl/synchronization/internal/futex_waiter.cc @@ -63,7 +63,6 @@ bool FutexWaiter::Wait(KernelTimeout t) { // Note that, since the thread ticker is just reset, we don't need to check // whether the thread is idle on the very first pass of the loop. bool first_pass = true; - while (true) { int32_t x = futex_.load(std::memory_order_relaxed); while (x != 0) { |