summaryrefslogtreecommitdiff
path: root/ace/LOCK_SOCK_Acceptor.h
diff options
context:
space:
mode:
Diffstat (limited to 'ace/LOCK_SOCK_Acceptor.h')
-rw-r--r--ace/LOCK_SOCK_Acceptor.h51
1 files changed, 25 insertions, 26 deletions
diff --git a/ace/LOCK_SOCK_Acceptor.h b/ace/LOCK_SOCK_Acceptor.h
index eaa16fc4e49..720664e65ff 100644
--- a/ace/LOCK_SOCK_Acceptor.h
+++ b/ace/LOCK_SOCK_Acceptor.h
@@ -1,17 +1,14 @@
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// ace
-//
-// = FILENAME
-// LOCK_SOCK_Acceptor.h
-//
-// = AUTHOR
-// James Hu and Irfan Pyarali
-//
-// ============================================================================
+
+//=============================================================================
+/**
+ * @file LOCK_SOCK_Acceptor.h
+ *
+ * $Id$
+ *
+ * @author James Hu and Irfan Pyarali
+ */
+//=============================================================================
+
#ifndef ACE_LOCK_SOCK_ACCEPTOR_H
#define ACE_LOCK_SOCK_ACCEPTOR_H
@@ -23,32 +20,34 @@
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
+/**
+ * @class ACE_LOCK_SOCK_Acceptor
+ *
+ * @brief Specialize <ACE_SOCK_Acceptor> to lock around <accept>;
+ *
+ * This class is necessary since some OS platforms (e.g.,
+ * Solaris 2.5) do not allow multiple threads/processes to
+ * simultaneously call <accept> on the same listen-mode
+ * port/socket. Thus, we need to protect against multiple
+ * concurrent accesses by using the appropriate type of lock.
+ */
template <class ACE_LOCK>
class ACE_LOCK_SOCK_Acceptor : public ACE_SOCK_Acceptor
{
- // = TITLE
- // Specialize <ACE_SOCK_Acceptor> to lock around <accept>;
- //
- // = DESCRIPTION
- // This class is necessary since some OS platforms (e.g.,
- // Solaris 2.5) do not allow multiple threads/processes to
- // simultaneously call <accept> on the same listen-mode
- // port/socket. Thus, we need to protect against multiple
- // concurrent accesses by using the appropriate type of lock.
public:
+ /// Accept the connection under the control of the <ACE_LOCK>.
int accept (ACE_SOCK_Stream &new_stream,
ACE_Addr *remote_addr = 0,
ACE_Time_Value *timeout = 0,
int restart = 1,
int reset_new_handle = 0) const;
- // Accept the connection under the control of the <ACE_LOCK>.
+ /// Return a reference to the lock.
ACE_LOCK &lock (void);
- // Return a reference to the lock.
protected:
+ /// Type of locking mechanism.
ACE_LOCK lock_;
- // Type of locking mechanism.
};
#if defined (ACE_TEMPLATES_REQUIRE_SOURCE)