當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Rust Condvar.wait用法及代碼示例


本文簡要介紹rust語言中 std::sync::Condvar.wait 的用法。

用法

pub fn wait<'a, T>(    &self,     guard: MutexGuard<'a, T>) -> LockResult<MutexGuard<'a, T>>

阻塞當前線程,直到此條件變量收到通知。

此函數將自動解鎖指定的互斥鎖(由 guard 表示)並阻塞當前線程。這意味著在互斥鎖解鎖後邏輯上發生的對 notify_one notify_all 的任何調用都是喚醒該線程的候選者。當此函數調用返回時,指定的鎖將被重新獲取。

請注意,此函數容易受到虛假喚醒的影響。條件變量通常有一個與之關聯的布爾謂詞,並且每次該函數返回時都必須檢查謂詞以防止虛假喚醒。

錯誤

如果當該線程重新獲取鎖時正在等待的互斥體中毒,則該函數將返回錯誤。有關詳細信息,請參閱有關 Mutex 類型的 poisoning 的信息。

Panics

如果隨著時間的推移與多個互斥鎖一起使用,此函數可能會 panic!

例子

use std::sync::{Arc, Mutex, Condvar};
use std::thread;

let pair = Arc::new((Mutex::new(false), Condvar::new()));
let pair2 = Arc::clone(&pair);

thread::spawn(move|| {
    let (lock, cvar) = &*pair2;
    let mut started = lock.lock().unwrap();
    *started = true;
    // We notify the condvar that the value has changed.
    cvar.notify_one();
});

// Wait for the thread to start up.
let (lock, cvar) = &*pair;
let mut started = lock.lock().unwrap();
// As long as the value inside the `Mutex<bool>` is `false`, we wait.
while !*started {
    started = cvar.wait(started).unwrap();
}

相關用法


注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 std::sync::Condvar.wait。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。