pub enum SemaphoreKind {
Counting {
max: u32,
initial: u32,
},
Mutex,
RecursiveMutex,
}Expand description
The type of semaphore or mutex to create.
pub enum SemaphoreKind {
Counting {
max: u32,
initial: u32,
},
Mutex,
RecursiveMutex,
}The type of semaphore or mutex to create.