/usr/include/ace/TMCast/Messaging.hpp is in libace-tmcast-dev 6.3.3+dfsg-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | // author : Boris Kolpackov <boris@dre.vanderbilt.edu>
#ifndef TMCAST_MESSAGING_HPP
#define TMCAST_MESSAGING_HPP
#include <ace/Synch.h>
#include <ace/Bound_Ptr.h>
#include "MTQueue.hpp"
namespace ACE_TMCast
{
class Message
{
public:
virtual
~Message () {}
};
typedef
ACE_Strong_Bound_Ptr<Message, ACE_SYNCH_MUTEX>
MessagePtr;
typedef
MTQueue<MessagePtr, ACE_Thread_Mutex, ACE_Condition<ACE_Thread_Mutex> >
MessageQueue;
struct MessageQueueAutoLock
{
MessageQueueAutoLock (MessageQueue& q)
: q_ (q)
{
q_.lock ();
}
void
unlock ()
{
q_.unlock ();
}
~MessageQueueAutoLock ()
{
q_.unlock ();
}
private:
MessageQueue& q_;
};
}
#endif // TMCAST_MESSAGING_HPP
|