Tagged Questions

9
votes
6answers
25k views

How do you implement a circular buffer in C?

I have a need for a fixed-size (selectable at run-time when creating it, not compile-time) circular buffer which can hold objects of any type and it needs to be very high performance. I don't think ...
3
votes
1answer
160 views

Circular buffer implementation with variable-sized items

I need to code a shared buffer (1R thread/1W thread) in C to asynchronously dump binary program output to I/O. I normally use the classical circular buffer implementation when it comes to write a ...
2
votes
6answers
1k views

How to best sort a portion of a circular buffer?

I have a circular, statically allocated buffer in C, which I'm using as a queue for a depth breadth first search. I'd like have the top N elements in the queue sorted. It would be easy to just use a ...
1
vote
1answer
131 views

Circular buffer Vs. Lock free stack to implement a Free List

As I have been writing some multi-threaded code for fun, I came up with the following situation: a thread claims a single resource unit from a memory pool, it processes it and sends a pointer to ...
1
vote
2answers
255 views

circular array in c for a delay line

I'm trying to find any resources online for programming a delay line in c. I tried implementing this one here https://ccrma.stanford.edu/~jos/doppler/Variable_Delay_Line_Software.html. The problem ...
1
vote
3answers
647 views

Array wraparound with modulo of unsigned

I'm trying to implement a lagged Fibonacci pseudo-random number generator for integers up to some maximum. It maintains an array of values int values[SIZE] = { /* 55 seed values */ }; and uses the ...
1
vote
1answer
786 views

How good is the memory mapped Circular Buffer on Wikipedia?

I'm trying to implement a circular buffer in C, and have come across this example on Wikipedia. It looks as if it would provide a really nice interface for anyone reading from the buffer, as reads ...
0
votes
1answer
97 views

2D Ring buffers in C

I have coded a simple ring buffer which has a ring size of 5 to store values of type A. Now I have to extend this buffer to store type B values(also 5 values). To give an overview, I have defined the ...
0
votes
1answer
253 views

C - circular character buffer w/ pthreads

I have a homework assignment where I have to implement a circular buffer and add and remove chars with separate threads: #include <pthread.h> #include <stdio.h> #define QSIZE 10 ...
0
votes
4answers
486 views

end pointer problem of a circular buffer

I'm using Visual c++. I'm trying to implement a circular buffer, this CB must handle a specific type of data...in fact, it's a structure data where we have some kind of raw data to be stored in a ...
0
votes
3answers
1k views

How do I code a simple integer circular buffer in C/C++?

I see a lot of templates and complicated data structures for implementing a circular buffer. How do I code a simple integer circular buffer for 5 numbers? I'm thinking in C is the most ...