<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Home</title><link>https://sourceforge.net/p/erqwrewrin/wiki/Home/</link><description>Recent changes to Home</description><atom:link href="https://sourceforge.net/p/erqwrewrin/wiki/Home/feed" rel="self"/><language>en</language><lastBuildDate>Fri, 24 May 2013 06:02:39 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/erqwrewrin/wiki/Home/feed" rel="self" type="application/rss+xml"/><item><title>Discussion for Home page</title><link>https://sourceforge.net/p/erqwrewrin/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;A ring buffer is a fast method to program a circular buffer. A ring buffer links a data structure into a circular pattern.&lt;br /&gt;
The data structure is extremely simple: a bounded FIFO. One step up from plain arrays, but still, it’s very basic stuff. And if you’re doing system programming, particularly anything involving IO or directly talking to hardware.&lt;/p&gt;
&lt;p&gt;The producer produces commands/objects/whatever in some way and appends them to the queue. The consumer pops an item from the start and does its work. If the queue is full, the producer has to wait; if it’s empty, the consumer has to wait. As programmer feeding hardware (or being fed from hardware), you’re generally trying to reach a steady state that does neither.&lt;/p&gt;
&lt;p&gt;Ring Buffer Implementation&lt;/p&gt;
&lt;p&gt;Suppose we have a circular buffer of n slots.&lt;br /&gt;
Pointers in (resp., out)points to the first empty(resp., filled) slot.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Senthilnathan Duraivelu</dc:creator><pubDate>Fri, 24 May 2013 06:02:39 -0000</pubDate><guid>https://sourceforge.net78b3f529989516a83f9077a6b381e79729b52f83</guid></item><item><title>Home modified by Senthilnathan Duraivelu</title><link>https://sourceforge.net/p/erqwrewrin/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Welcome to your wiki!&lt;/p&gt;
&lt;p&gt;This is the default page, edit it as you see fit. To add a new page simply reference it within brackets, e.g.: &lt;span&gt;[SamplePage]&lt;/span&gt;.&lt;/p&gt;
&lt;p&gt;The wiki uses &lt;a class="" href="/p/erqwrewrin/wiki/markdown_syntax/"&gt;Markdown&lt;/a&gt; syntax.&lt;/p&gt;
&lt;p&gt;&lt;h6&gt;Project Members:&lt;/h6&gt;&lt;ul class="md-users-list"&gt;&lt;li&gt;&lt;a href="/u/dsnathan6/"&gt;Senthilnathan Duraivelu&lt;/a&gt; (admin)&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p&gt;&lt;span class="download-button-519df918a02bb153b4391238" style="margin-bottom: 1em; display: block;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Senthilnathan Duraivelu</dc:creator><pubDate>Thu, 23 May 2013 11:10:16 -0000</pubDate><guid>https://sourceforge.neta15d911d10d3e247bcd8cc7629b1d9085e07726a</guid></item></channel></rss>