First complete documentation version

[SVN r34817]
This commit is contained in:
Ion Gaztañaga
2006-08-04 19:14:25 +00:00
parent 3b82266f80
commit 4ed08b24a6
71 changed files with 2094 additions and 170 deletions

View File

@@ -0,0 +1,22 @@
#include <boost/interprocess/sync/interprocess_mutex.hpp>
struct shared_memory_log
{
enum { NumItems = 100 };
enum { LineSize = 100 };
shared_memory_log()
: current_line(0)
, end_a(false)
, end_b(false)
{}
//Mutex to protect access to the queue
boost::interprocess::interprocess_mutex mutex;
//Items to fill
char items[NumItems][LineSize];
int current_line;
bool end_a;
bool end_b;
};