summaryrefslogtreecommitdiff
path: root/ACE/ace/Barrier.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2010-09-28 11:38:59 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2010-09-28 11:38:59 +0000
commit99c513d228740018c656ade1c93302cc04351911 (patch)
tree6f1c230b12220ce80f60aae4ccd0783675777b18 /ACE/ace/Barrier.h
parent741ba3b3813e9f0efc150d8a730237fd0991516b (diff)
downloadATCD-99c513d228740018c656ade1c93302cc04351911.tar.gz
Tue Sep 28 11:34:05 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Asynch_Connector.cpp: * ace/Barrier.h: * ace/Barrier.cpp: * ace/Condition_Thread_Mutex.h: * ace/Condition_Thread_Mutex.inl: * ace/Containers_T.cpp: * ace/Functor.h: * ace/Functor.inl: * ace/IO_Cntl_Msg.cpp: * ace/Intrusive_List.cpp: * ace/Local_Tokens.inl: * ace/MEM_IO.cpp: * ace/MEM_Stream.h: * ace/MEM_Stream.inl: * ace/Malloc_T.inl: * ace/OS_NS_Thread.inl: * ace/OS_NS_string.inl: * ace/Object_Manager_Base.cpp: * ace/POSIX_Proactor.cpp: * ace/Ping_Socket.cpp: * ace/Signal.inl: * ace/Throughput_Stats.h: * ace/Throughput_Stats.cpp: * ace/Time_Value.cpp: * ace/Timer_Hash_T.cpp: * ace/Timer_Heap_T.cpp: * ace/Vector_T.h: * ace/Vector_T.cpp: * ace/config-linux-common.h: Removed code that was ifdefed out for years now
Diffstat (limited to 'ACE/ace/Barrier.h')
-rw-r--r--ACE/ace/Barrier.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/ACE/ace/Barrier.h b/ACE/ace/Barrier.h
index 00e22ec19f5..44607bc6f34 100644
--- a/ACE/ace/Barrier.h
+++ b/ACE/ace/Barrier.h
@@ -156,29 +156,6 @@ private:
ACE_Barrier (const ACE_Barrier &);
};
-#if 0
-/**
- * @class ACE_Process_Barrier
- *
- * @brief Implements "barrier synchronization" using ACE_Process_Mutexes!
- *
- * This class is just a simple wrapper for ACE_Barrier that
- * selects the USYNC_PROCESS variant for the locks.
- */
-class ACE_Export ACE_Process_Barrier : public ACE_Barrier
-{
-public:
- /// Create a Process_Barrier, passing in the optional @a name.
- ACE_Process_Barrier (unsigned int count, const ACE_TCHAR *name = 0);
-
- /// Dump the state of an object.
- void dump (void) const;
-
- /// Declare the dynamic allocation hooks.
- ACE_ALLOC_HOOK_DECLARE;
-};
-#endif /* 0 */
-
/**
* @class ACE_Thread_Barrier
*