ck_ring_capacity - Man Page

returns number of pointer slots in bounded FIFO

Library

Concurrency Kit (libck, -lck)

Synopsis

#include <ck_ring.h>

unsigned int
ck_ring_capacity(ck_ring_t *ring);

Description

The ck_ring_capacity(3) function returns the number of pointers that can be held in the buffer pointed to by ring. Note that a ring can only hold ck_ring_capacity(3) minus one entries at a time.

See Also

ck_ring_init(3), ck_ring_enqueue_spmc(3), ck_ring_dequeue_spmc(3), ck_ring_trydequeue_spmc(3), ck_ring_enqueue_spmc_size(3), ck_ring_dequeue_spsc(3), ck_ring_enqueue_spsc(3), ck_ring_enqueue_spsc_size(3), ck_ring_size(3)

Additional information available at http://concurrencykit.org/

Referenced By

ck_ring_dequeue_spmc(3), ck_ring_dequeue_spsc(3), ck_ring_enqueue_spmc(3), ck_ring_enqueue_spmc_size(3), ck_ring_enqueue_spsc(3), ck_ring_enqueue_spsc_size(3), ck_ring_init(3), ck_ring_size(3), ck_ring_trydequeue_spmc(3).

April 20, 2013