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:
26
doc/code/doc_anonymous_condition_shared_data.hpp
Normal file
26
doc/code/doc_anonymous_condition_shared_data.hpp
Normal file
@@ -0,0 +1,26 @@
|
||||
#include <boost/interprocess/sync/interprocess_mutex.hpp>
|
||||
#include <boost/interprocess/sync/interprocess_condition.hpp>
|
||||
|
||||
struct trace_queue
|
||||
{
|
||||
enum { LineSize = 100 };
|
||||
|
||||
trace_queue()
|
||||
: message_in(false)
|
||||
{}
|
||||
|
||||
//Mutex to protect access to the queue
|
||||
boost::interprocess::interprocess_mutex mutex;
|
||||
|
||||
//Condition to wait when the queue is empty
|
||||
boost::interprocess::interprocess_condition cond_empty;
|
||||
|
||||
//Condition to wait when the queue is full
|
||||
boost::interprocess::interprocess_condition cond_full;
|
||||
|
||||
//Items to fill
|
||||
char items[LineSize];
|
||||
|
||||
//Is there any message
|
||||
bool message_in;
|
||||
};
|
||||
Reference in New Issue
Block a user