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 simple shared buffer, but in this case the size of each item on the buffer is variable and not-known at compile time. I was wondering what is a possible implementation of a circular buffer with variable-sized items.

Thanks.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

You may think of it as a circular binary stream. That is, instead if adding an element you'll write the data, instead of popping it you'll read it.

link|improve this answer
how would you track the size to read ? writing it directly in the write index ? – ziu Aug 17 '11 at 14:07
1  
you can write to the buffer a struct { int size_payload; char* payload}, after reading first int you know how much is the payload (variable-sized item) – Jakub M. Aug 17 '11 at 14:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.