Home
last modified time | relevance | path

Searched refs:wakeup_thread (Results 1 – 1 of 1) sorted by relevance

/external/rust/android-crates-io/crates/parking_lot_core/src/
Dparking_lot.rs912 let mut wakeup_thread = None; in unpark_requeue() localVariable
924 && wakeup_thread.is_none() in unpark_requeue()
926 wakeup_thread = Some(current); in unpark_requeue()
979 if let Some(wakeup_thread) = wakeup_thread { in unpark_requeue()
980 (*wakeup_thread).unpark_token.set(token); in unpark_requeue()
981 let handle = (*wakeup_thread).parker.unpark_lock(); in unpark_requeue()