Constant parking_lot::raw_mutex::PARKED_BIT

source ยท
const PARKED_BIT: u8 = 0b10;
Expand description

This bit is set in the state of a RawMutex just before parking a thread. A thread is being parked if it wants to lock the mutex, but it is currently being held by some other thread.