summaryrefslogtreecommitdiff
path: root/ace/Synch_T.h
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Synch_T.h')
-rw-r--r--ace/Synch_T.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/ace/Synch_T.h b/ace/Synch_T.h
index 9d5da5922b1..167bf36950a 100644
--- a/ace/Synch_T.h
+++ b/ace/Synch_T.h
@@ -549,29 +549,6 @@ private:
void operator= (const ACE_Condition<MUTEX> &) {}
ACE_Condition (const ACE_Condition<MUTEX> &c): mutex_ (c.mutex_) {}
};
-
-template <class MUTEX>
-class ACE_Process_Condition : public ACE_Condition<MUTEX>
- // = TITLE
- // ACE_Condition variable wrapper that works across processes.
- //
- // = DESCRIPTION
- // Note that this implementation only works on OS platforms
- // (e.g., Solaris and some implementations of POSIX pthreads)
- // that natively implement condition variables and mutexes with
- // USYNC_PROCESS scope. In particular, this won't work on
- // Win32, where these synchronization mechanisms are emulated.
-{
-public:
- ACE_Process_Condition (MUTEX &m, LPCTSTR name = 0, void *arg = 0);
-
- void dump (void) const;
- // Dump the state of an object.
-
- // ACE_ALLOC_HOOK_DECLARE;
- // Declare the dynamic allocation hooks.
-};
-
template <class MUTEX>
class ACE_Thread_Condition : public ACE_Condition<MUTEX>
// = TITLE