[compiler-rt] Use the new zx_futex_wait for Fuchsia sanitizer runtime
authorPetr Hosek <phosek@chromium.org>
Tue, 4 Dec 2018 04:07:43 +0000 (04:07 +0000)
committerPetr Hosek <phosek@chromium.org>
Tue, 4 Dec 2018 04:07:43 +0000 (04:07 +0000)
This finishes the soft-transition to the new primitive that implements
priority inheritance.

Differential Revision: https://reviews.llvm.org/D55244

llvm-svn: 348236

compiler-rt/lib/sanitizer_common/sanitizer_fuchsia.cc

index ee451f9..0698666 100644 (file)
@@ -120,8 +120,9 @@ void BlockingMutex::Lock() {
   if (atomic_exchange(m, MtxLocked, memory_order_acquire) == MtxUnlocked)
     return;
   while (atomic_exchange(m, MtxSleeping, memory_order_acquire) != MtxUnlocked) {
-    zx_status_t status = _zx_futex_wait_deprecated(
-        reinterpret_cast<zx_futex_t *>(m), MtxSleeping, ZX_TIME_INFINITE);
+    zx_status_t status =
+        _zx_futex_wait(reinterpret_cast<zx_futex_t *>(m), MtxSleeping,
+                       ZX_HANDLE_INVALID, ZX_TIME_INFINITE);
     if (status != ZX_ERR_BAD_STATE)  // Normal race.
       CHECK_EQ(status, ZX_OK);
   }