Giter Club home page Giter Club logo

lockless_tripplebuffer's Introduction

lockless_tripplebuffer

A lockless single writer, single reader triple buffer Implemented using C++11 atomic operations

This class can be used to transport data between two threads it doesn't guarantee that all data will be transported however it can guarantee access to a complete (predefined) chunk of data

for example: when used to transport audio samples from audio thread to graphics thread, we can ensure that the graphics thread is always accessing a block of CONSECUTIVE samples and that this block is the block which was most recently filled by the audio thread.

this is a slightly modified version of implementation published here: https://github.com/p4checo/triplebuffer-sync which in turn was based on following blog post: http://remis-thoughts.blogspot.pt/2012/01/triple-buffering-as-concurrency_30.html

my contributions:

  • added by-reference access to the content of the buffer
  • added a multithreaded unit test (using gmock)
  • packaged this code as a header only CMAKE project

####To build and run tests: cd to the top level repository folder:

mkdir build && cd build  
cmake ..  
make

the above will automatically download gmock and compile the tests
then to actually run the test do:

test/lockless_tripplebuffer_GTest

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.