Lock less Ring buffer, Multi producer-Multi consumer Ring buffer
Lock free single producer - Single consumer ring buffer implementation
Without Atomic operations, the ring buffer implementation
#define MAX_BUFFER_SIZE 10
#define BUFFER_FULL -1
#define BUFFER_EMPTY
waageesh.hashnode.dev9 min read