Click here to Skip to main content
15,879,535 members
Articles / Desktop Programming / MFC
Article

Circular Buffer

Rate me:
Please Sign up or sign in to vote.
3.25/5 (3 votes)
15 Jun 2001 66.8K   1.6K   32   1
A multi-threaded circular buffer program

Sample Image - circbuf.gif

Overview

I recently needed a class that performed both a read and write operation to a queue. I started searching for such a class, and I found one here at Code Project. I made several changes to the application. First, I converted the program from console application to an MFC SDI application using a CListView for displaying the data (see screenshot). Next, I simplified the thread synchronization process by sending a user defined window message. And finally, I added a performance timer (also found here at Code Project) which measures the time required to execute the program using different queue sizes. For specific details on how the queue portion of the program works reference David Hubbard's Circular Buffer article. I have included a small demonstration application in a project called Circbuf. It is multithreaded MFC SDI application using VC6.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Generalincrease the queue size ,then not work queSz = 500; Pin
Jimmy Zhao24-Jul-04 16:52
Jimmy Zhao24-Jul-04 16:52 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.