mirror of
https://github.com/boostorg/interprocess.git
synced 2026-02-13 00:22:20 +00:00
First complete documentation version
[SVN r34817]
This commit is contained in:
22
doc/code/doc_anonymous_mutex_shared_data.hpp
Normal file
22
doc/code/doc_anonymous_mutex_shared_data.hpp
Normal 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;
|
||||
};
|
||||
Reference in New Issue
Block a user