summaryrefslogtreecommitdiff
path: root/ace/Proactor_Impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Proactor_Impl.h')
-rw-r--r--ace/Proactor_Impl.h14
1 files changed, 5 insertions, 9 deletions
diff --git a/ace/Proactor_Impl.h b/ace/Proactor_Impl.h
index 847bc694a10..262d3e66da3 100644
--- a/ace/Proactor_Impl.h
+++ b/ace/Proactor_Impl.h
@@ -1,4 +1,4 @@
-// -*- C++ -*-
+/* -*- C++ -*- */
//=============================================================================
/**
@@ -26,8 +26,6 @@
#include "ace/Reactor.h"
#include "ace/Countdown_Time.h"
-ACE_BEGIN_VERSIONED_NAMESPACE_DECL
-
/**
* @class ACE_Proactor_Impl
*
@@ -49,13 +47,13 @@ public:
/// Close the IO completion port.
virtual int close (void) = 0;
- /// This method adds the @a handle to the I/O completion port. This
+ /// This method adds the <handle> to the I/O completion port. This
/// function is a no-op function for Unix systems.
virtual int register_handle (ACE_HANDLE handle,
- const void *completion_key) = 0;
+ const void *completion_key) = 0;
/**
- * Dispatch a single set of events. If @a wait_time elapses before
+ * Dispatch a single set of events. If <wait_time> elapses before
* any events occur, return 0. Return 1 on success i.e., when a
* completion is dispatched, non-zero (-1) on errors and errno is
* set accordingly.
@@ -251,15 +249,13 @@ public:
int signal_number = 0) = 0;
/**
- * Post @a how_many completions to the completion port so that all
+ * Post <how_many> completions to the completion port so that all
* threads can wake up. This is used in conjunction with the
* <run_event_loop>.
*/
virtual int post_wakeup_completions (int how_many) = 0;
};
-ACE_END_VERSIONED_NAMESPACE_DECL
-
#endif /* (ACE_WIN32 && ACE_HAS_WINCE) || ACE_HAS_AIO_CALLS */
#include /**/ "ace/post.h"
#endif /* ACE_PROACTOR_IMPL_H */