summaryrefslogtreecommitdiff
path: root/ace/Module.h
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1999-07-31 22:18:20 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1999-07-31 22:18:20 +0000
commit10f1729b65638f3f273f523861dd547ec6832e5f (patch)
treea49c98ad0d34bcb5a87c9f7fb1a256c7bf4df6dd /ace/Module.h
parent3e172150a24e32f471d10eb9a60eebb599de6f81 (diff)
downloadATCD-10f1729b65638f3f273f523861dd547ec6832e5f.tar.gz
ChangeLogTag:Sat Jul 31 12:07:48 1999 Douglas C. Schmidt <schmidt@mambo.cs.wustl.edu>
Diffstat (limited to 'ace/Module.h')
-rw-r--r--ace/Module.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/ace/Module.h b/ace/Module.h
index c32d41ef5f4..45463b93a05 100644
--- a/ace/Module.h
+++ b/ace/Module.h
@@ -38,16 +38,16 @@ public:
enum
{
M_DELETE_NONE = 0,
- // Indicates that close() should not delete any Tasks.
+ // Indicates that <close> should not delete any Tasks.
M_DELETE_READER = 1,
- // Indicates that close() should delete the writer Task.
+ // Indicates that <close> should delete the writer Task.
M_DELETE_WRITER = 2,
- // Indicates that close() should delete the reader Task.
+ // Indicates that <close> should delete the reader Task.
M_DELETE = 3
- // Indicates that close() deletes the Tasks. Don't change this
+ // Indicates that <close> deletes the Tasks. Don't change this
// value without updating the same enum in class ACE_Stream...
// The <M_DELETE_READER> and <M_DELETE_WRITER> flags may be or'ed
// together.
@@ -93,14 +93,14 @@ public:
// and <reader> and <writer> as its tasks. Previously register
// reader or writers or closed down and deleted according to the
// value of flags_. Should not be called from within
- // ACE_Task::module_closed().
+ // <ACE_Task::module_closed>.
int close (int flags = M_DELETE_NONE);
// Close down the Module and its Tasks. The flags argument can be
// used to override the default behaviour, which depends on previous
- // <flags> values in calls to c'tor(), open(), reader() and
- // writer(). A previous value M_DELETE[_XXX] can not be overridden.
- // Should not be called from within ACE_Task::module_closed().
+ // <flags> values in calls to c'tor, <open>, <reader>, and <writer>.
+ // A previous value M_DELETE[_XXX] can not be overridden. Should
+ // not be called from within <ACE_Task::module_closed>.
// = ACE_Task manipulation routines
ACE_Task<ACE_SYNCH_USE> *writer (void);
@@ -111,7 +111,7 @@ public:
// module should delete the writer during a call to close or to the
// destructor. If a previous writer exists, it is closed. It may
// also be deleted, depending on the old flags_ value. Should not
- // be called from within ACE_Task::module_closed().
+ // be called from within <ACE_Task::module_closed>.
ACE_Task<ACE_SYNCH_USE> *reader (void);
// Get the reader task.
@@ -121,7 +121,7 @@ public:
// module should delete the reader during a call to close or to the
// destructor. If a previous reader exists, it is closed. It may
// also be deleted, depending on the old flags_ value. Should not
- // be called from within ACE_Task::module_closed()
+ // be called from within <ACE_Task::module_closed>.
ACE_Task<ACE_SYNCH_USE> *sibling (ACE_Task<ACE_SYNCH_USE> *orig);
// Set and get pointer to sibling <ACE_Task> in an <ACE_Module>