summaryrefslogtreecommitdiff
path: root/ace/Thread_Semaphore.cpp
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2005-05-05 12:53:55 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2005-05-05 12:53:55 +0000
commit3c61e20f081bf6fbab6d3483e5e7f71cb91c4974 (patch)
tree4d687030d8e848eb2c325e8234fb807f578df890 /ace/Thread_Semaphore.cpp
parent65ce81267a19f490a22443567c75276fc864cbd2 (diff)
downloadATCD-RepositoryManager.tar.gz
This commit was manufactured by cvs2svn to create branchRepositoryManager
'RepositoryManager'.
Diffstat (limited to 'ace/Thread_Semaphore.cpp')
-rw-r--r--ace/Thread_Semaphore.cpp59
1 files changed, 0 insertions, 59 deletions
diff --git a/ace/Thread_Semaphore.cpp b/ace/Thread_Semaphore.cpp
deleted file mode 100644
index 8c56a7e1c31..00000000000
--- a/ace/Thread_Semaphore.cpp
+++ /dev/null
@@ -1,59 +0,0 @@
-/* -*- C++ -*- */
-/**
- * @file Thread_Semaphore.cpp
- *
- * $Id$
- *
- * Originally in Synch.cpp
- *
- * @author Douglas C. Schmidt <schmidt@cs.wustl.edu>
- */
-
-#include "ace/Thread_Semaphore.h"
-
-#if defined (ACE_HAS_THREADS)
-
-#if !defined (__ACE_INLINE__)
-#include "ace/Thread_Semaphore.inl"
-#endif /* __ACE_INLINE__ */
-
-#include "ace/ACE.h"
-
-ACE_RCSID(ace, Thread_Semaphore, "$Id$")
-
-
-void
-ACE_Thread_Semaphore::dump (void) const
-{
-#if defined (ACE_HAS_DUMP)
-// ACE_TRACE ("ACE_Thread_Semaphore::dump");
-
- ACE_Semaphore::dump ();
-#endif /* ACE_HAS_DUMP */
-}
-
-ACE_Thread_Semaphore::ACE_Thread_Semaphore (unsigned int count,
- const ACE_TCHAR *name,
- void *arg,
- int max)
- : ACE_Semaphore (count, USYNC_THREAD, name, arg, max)
-{
-// ACE_TRACE ("ACE_Thread_Semaphore::ACE_Thread_Semaphore");
-}
-
-/*****************************************************************************/
-
-ACE_Thread_Semaphore *
-ACE_Malloc_Lock_Adapter_T<ACE_Thread_Semaphore>::operator () (const ACE_TCHAR *name)
-{
- ACE_Thread_Semaphore *p = 0;
- if (name == 0)
- ACE_NEW_RETURN (p, ACE_Thread_Semaphore (1, name), 0);
- else
- ACE_NEW_RETURN (p, ACE_Thread_Semaphore (1, ACE::basename (name,
- ACE_DIRECTORY_SEPARATOR_CHAR)),
- 0);
- return p;
-}
-
-#endif /* ACE_HAS_THREADS */