diff options
Diffstat (limited to 'absl/synchronization/internal/futex_waiter.cc')
-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) { |