Module a653rs_linux_core::queuing::concurrent_queue

source ·

Structs§

  • An unsized bounded concurrent queue (Fifo) that makes use of atomics and does not use pointers internally. This allows the queue to be created inside a buffer of type &[u8] via ConcurrentQueue::init_at. The required buffer size can be requested in advance via ConcurrentQueue::size by providing the size and maximum number of entries. # Example