diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 2002-03-11 16:53:42 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 2002-03-11 16:53:42 +0000 |
commit | ccba84b8a7f64a1869fb33ecbfa1c5321d52a4f6 (patch) | |
tree | 3fe1e73150d647f88373e6666e13ec3763b61d25 | |
parent | a472e925ef22a8423be7c3425674e57a176ba6e5 (diff) | |
download | ATCD-ccba84b8a7f64a1869fb33ecbfa1c5321d52a4f6.tar.gz |
ChangeLogTag:Mon Mar 11 10:28:45 2002 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r-- | ace/Module.h | 3 | ||||
-rw-r--r-- | ace/Stream.h | 5 | ||||
-rw-r--r-- | ace/Task_T.h | 7 |
3 files changed, 7 insertions, 8 deletions
diff --git a/ace/Module.h b/ace/Module.h index 735220a55ba..058302b3c63 100644 --- a/ace/Module.h +++ b/ace/Module.h @@ -6,11 +6,10 @@ * * $Id$ * - * @author Doug Schmidt + * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> */ //============================================================================= - #ifndef ACE_MODULE_H #define ACE_MODULE_H #include "ace/pre.h" diff --git a/ace/Stream.h b/ace/Stream.h index f4f432e10f3..9e30b2c3ae3 100644 --- a/ace/Stream.h +++ b/ace/Stream.h @@ -6,11 +6,10 @@ * * $Id$ * - * @author Doug Schmidt <schmidt@uci.edu> + * @author Douglas C. Schmidt <schmidt@uci.edu> */ //============================================================================= - #ifndef ACE_STREAM_H #define ACE_STREAM_H #include "ace/pre.h" @@ -135,7 +134,7 @@ public: ACE_Time_Value *timeout = 0); /** - * Read the message <mb> that is stored in the the stream head. + * Read the message <mb> that is stored in the stream head. * Wait for upto <timeout> amount of absolute time for the operation * to complete (or block forever if <timeout> == 0). */ diff --git a/ace/Task_T.h b/ace/Task_T.h index c492dde371a..091ebe982c9 100644 --- a/ace/Task_T.h +++ b/ace/Task_T.h @@ -121,9 +121,10 @@ public: // Should be protected: ACE_Module<ACE_SYNCH_USE> *module (void) const; /** - * Flush the queue. Note that if this conflicts with the C++ - * iostream <flush> function, just rewrite the iostream function as - * ::<flush>. + * Flush the queue, i.e., close it down and free all of the enqueued + * message blocks and releases any threads blocked on the queue. + * Note that if this conflicts with the C++ iostream <flush> + * function, just rewrite the iostream function as ::<flush>. */ int flush (u_long flag = ACE_Task_Flags::ACE_FLUSHALL); |