Home
last modified time | relevance | path

Searched defs:Semaphore (Results 1 – 1 of 1) sorted by relevance

/commonlibrary/rust/ylong_runtime/ylong_runtime/src/sync/
Dsemaphore.rs46 pub struct Semaphore { struct
47 inner: SemaphoreInner, argument
94 impl Semaphore { implementation
104 pub fn new(permits: usize) -> Result<Semaphore, SemaphoreError> { in new()