yep_coc/
error.rs

1#[derive(Eq, PartialEq, Debug)]
2pub enum YCQueueError {
3    InvalidArgs,
4    OutOfSpace,
5    EmptyQueue,
6    SlotNotReady,
7    #[cfg(feature = "futex")]
8    Timeout,
9}