summaryrefslogtreecommitdiff
path: root/rtpSessionTable.h
diff options
context:
space:
mode:
authorOthmar Gsenger <otti@anytun.org>2008-03-08 18:39:15 +0000
committerOthmar Gsenger <otti@anytun.org>2008-03-08 18:39:15 +0000
commitb9ae5e0ed6e4238c7410265ed5530931d4552f7d (patch)
tree79f0f1fffb5120931d834987ec4bbb04c9a4660d /rtpSessionTable.h
parentadded RtpSessionTable (diff)
added SyncRtpCommand
Diffstat (limited to 'rtpSessionTable.h')
-rw-r--r--rtpSessionTable.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/rtpSessionTable.h b/rtpSessionTable.h
index f127801..5b14082 100644
--- a/rtpSessionTable.h
+++ b/rtpSessionTable.h
@@ -49,14 +49,14 @@ public:
//u_int16_t getRoute(const NetworkAddress &);
bool empty();
void clear();
- Mutex& getMutex();
+ ::Mutex& getMutex();
RtpSession& getOrNewSessionUnlocked(const std::string & addr);
uint16_t getCountUnlocked();
RtpSessionMap::iterator getBeginUnlocked();
RtpSessionMap::iterator getEndUnlocked();
private:
- static Mutex instMutex;
+ static ::Mutex instMutex;
static RtpSessionTable* inst;
class instanceCleaner {
public: ~instanceCleaner() {
@@ -67,7 +67,7 @@ private:
RtpSessionTable(const RtpSessionTable &s);
void operator=(const RtpSessionTable &s);
RtpSessionMap map_;
- Mutex mutex_;
+ ::Mutex mutex_;
};
extern RtpSessionTable& gRtpSessionTable;