const PARKED_BIT: u8 = 0b10;
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.
state
RawMutex