diff options
author | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2005-05-05 12:53:55 +0000 |
---|---|---|
committer | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2005-05-05 12:53:55 +0000 |
commit | 3c61e20f081bf6fbab6d3483e5e7f71cb91c4974 (patch) | |
tree | 4d687030d8e848eb2c325e8234fb807f578df890 /ace/LOCK_SOCK_Acceptor.cpp | |
parent | 65ce81267a19f490a22443567c75276fc864cbd2 (diff) | |
download | ATCD-RepositoryManager.tar.gz |
This commit was manufactured by cvs2svn to create branchRepositoryManager
'RepositoryManager'.
Diffstat (limited to 'ace/LOCK_SOCK_Acceptor.cpp')
-rw-r--r-- | ace/LOCK_SOCK_Acceptor.cpp | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/ace/LOCK_SOCK_Acceptor.cpp b/ace/LOCK_SOCK_Acceptor.cpp deleted file mode 100644 index 7c3f1763f14..00000000000 --- a/ace/LOCK_SOCK_Acceptor.cpp +++ /dev/null @@ -1,33 +0,0 @@ -// $Id$ - -#ifndef ACE_LOCK_SOCK_ACCEPTOR_CPP -#define ACE_LOCK_SOCK_ACCEPTOR_CPP - -#include "ace/Guard_T.h" -#include "ace/LOCK_SOCK_Acceptor.h" - -ACE_RCSID(ace, LOCK_SOCK_Acceptor, "$Id$") - -template <class ACE_LOCK> int -ACE_LOCK_SOCK_Acceptor<ACE_LOCK>::accept (ACE_SOCK_Stream &stream, - ACE_Addr *remote_address, - ACE_Time_Value *timeout, - int restart, - int reset_new_handle) const -{ - ACE_GUARD_RETURN (ACE_LOCK, ace_mon, (ACE_LOCK &) this->lock_, -1); - - return ACE_SOCK_Acceptor::accept (stream, - remote_address, - timeout, - restart, - reset_new_handle); -} - -template <class ACE_LOCK> ACE_LOCK & -ACE_LOCK_SOCK_Acceptor<ACE_LOCK>::lock (void) -{ - return this->lock_; -} - -#endif /* ACE_LOCK_SOCK_ACCEPTOR_CPP */ |