diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 2001-06-25 05:05:36 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 2001-06-25 05:05:36 +0000 |
commit | 78ba6eeabb898b178e0525d921326a91f55f2c1f (patch) | |
tree | bc53d838982c4b3d11063b5478bf8f18549222b2 | |
parent | 1c7dd923f0e68e461950e55a6c4d4fa52dc38836 (diff) | |
download | ATCD-78ba6eeabb898b178e0525d921326a91f55f2c1f.tar.gz |
ChangeLogTag:Sun Jun 24 08:57:26 2001 Balachandran Natarajan <bala@cs.wustl.edu>
-rw-r--r-- | ace/Message_Block.h | 2 | ||||
-rw-r--r-- | ace/Process.h | 1 | ||||
-rw-r--r-- | ace/Process_Manager.h | 8 | ||||
-rw-r--r-- | ace/SV_Message_Queue.h | 3 | ||||
-rw-r--r-- | ace/SV_Semaphore_Complex.h | 3 | ||||
-rw-r--r-- | ace/SV_Semaphore_Simple.h | 1 | ||||
-rw-r--r-- | ace/SV_Shared_Memory.h | 3 | ||||
-rw-r--r-- | ace/Synch_T.h | 12 | ||||
-rw-r--r-- | ace/Token.h | 3 | ||||
-rw-r--r-- | ace/Typed_SV_Message_Queue.h | 6 |
10 files changed, 15 insertions, 27 deletions
diff --git a/ace/Message_Block.h b/ace/Message_Block.h index 04c0c8146a7..b14dac673ac 100644 --- a/ace/Message_Block.h +++ b/ace/Message_Block.h @@ -347,7 +347,7 @@ public: /** * Copies <buf> into the Message_Block starting at the <wr_ptr> - * offset. This call assumees that <buf> is NUL-terminated. Return + * offset. This call assumes that <buf> is NUL-terminated. Return * 0 and increment <wr_ptr> by <ACE_OS::strlen (buf) + 1> if the * method succeeds. Returns -1 if the size of the message is too * small, i.e., for this to work correct, <end> must be >= <wr_ptr>. diff --git a/ace/Process.h b/ace/Process.h index e6924ea5047..804781a9c02 100644 --- a/ace/Process.h +++ b/ace/Process.h @@ -10,7 +10,6 @@ */ //============================================================================= - #ifndef ACE_PROCESS_H #define ACE_PROCESS_H #include "ace/pre.h" diff --git a/ace/Process_Manager.h b/ace/Process_Manager.h index f1c3d56ba72..dade19e1001 100644 --- a/ace/Process_Manager.h +++ b/ace/Process_Manager.h @@ -89,8 +89,7 @@ private: * or its pid cast to an <ACE_HANDLE> (on unix). * It is also possible to call the <Process_Manager::wait> * functions even though the <Process_Manager> is registered with - * a <Reactor>. I don't know what happens in this case, but it's - * probably not *too* bad. + * a <Reactor>. * Note also that the wait functions are "sloppy" on Unix, * because there's no good way to wait for a subset of the * children of a process. The wait functions may end up @@ -98,10 +97,7 @@ private: * the <Process_Manager> whose <wait> you invoked. It's best to * only use a single <Process_Manager>, and to create all * subprocesses by calling that <Process_Manager>'s <spawn> - * method. (I have some ideas for workarounds to improve this - * situation, but I consider it fairly low priority because I - * think the "single <Process_Manager>" pattern will be - * sufficient in most cases.) + * method. * Incidentally, when you register your <Process_Manager> with a * <Reactor> its notification pipe is used to help "reap" the * available exit statuses. Therefore, you must not use a diff --git a/ace/SV_Message_Queue.h b/ace/SV_Message_Queue.h index ad8caffdca7..20af5ad8cfa 100644 --- a/ace/SV_Message_Queue.h +++ b/ace/SV_Message_Queue.h @@ -6,11 +6,10 @@ * * $Id$ * - * @author Doug Schmidt + * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> */ //============================================================================= - #ifndef ACE_SV_MESSAGE_QUEUE_H #define ACE_SV_MESSAGE_QUEUE_H #include "ace/pre.h" diff --git a/ace/SV_Semaphore_Complex.h b/ace/SV_Semaphore_Complex.h index a5f114545a5..d89c855cc69 100644 --- a/ace/SV_Semaphore_Complex.h +++ b/ace/SV_Semaphore_Complex.h @@ -6,11 +6,10 @@ * * $Id$ * - * @author Doug Schmidt + * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> */ //============================================================================= - #ifndef ACE_SV_SEMAPHORE_COMPLEX_H #define ACE_SV_SEMAPHORE_COMPLEX_H #include "ace/pre.h" diff --git a/ace/SV_Semaphore_Simple.h b/ace/SV_Semaphore_Simple.h index 4c73d703d9f..ac6126b2e8c 100644 --- a/ace/SV_Semaphore_Simple.h +++ b/ace/SV_Semaphore_Simple.h @@ -10,7 +10,6 @@ */ //============================================================================= - #ifndef ACE_SV_SEMAPHORE_SIMPLE_H #define ACE_SV_SEMAPHORE_SIMPLE_H #include "ace/pre.h" diff --git a/ace/SV_Shared_Memory.h b/ace/SV_Shared_Memory.h index b27404cc86e..977d33f6faa 100644 --- a/ace/SV_Shared_Memory.h +++ b/ace/SV_Shared_Memory.h @@ -6,11 +6,10 @@ * * $Id$ * - * @author Doug Schmidt + * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> */ //============================================================================= - #ifndef ACE_SV_SHARED_MEMORY_H #define ACE_SV_SHARED_MEMORY_H #include "ace/pre.h" diff --git a/ace/Synch_T.h b/ace/Synch_T.h index 4a31cbd884c..191f1d33749 100644 --- a/ace/Synch_T.h +++ b/ace/Synch_T.h @@ -283,12 +283,12 @@ private: * thread-specific functions. It uses the <C++ operator->> to * shield applications from the details of accessing * thread-specific storage. - * NOTE: TYPE cannot be a built-in type, but instead must be a - * user-defined class. (Some compilers will allow a built-in - * type, but shouldn't. Sun C++ won't, properly detecting the - * improper return type from <operator->>.) See template class - * ACE_TSS_Type_Adapter, below, for adapting built-in types to - * work with ACE_TSS. + * + * NOTE: For maximal portability, <TYPE> cannot be a built-in type, + * but instead should be a user-defined class (some compilers will + * allow a built-in type, others won't). See template class + * ACE_TSS_Type_Adapter, below, for adapting built-in types to work + * with ACE_TSS. */ template <class TYPE> class ACE_TSS diff --git a/ace/Token.h b/ace/Token.h index c4fc805061b..8d9cc641059 100644 --- a/ace/Token.h +++ b/ace/Token.h @@ -13,7 +13,6 @@ */ //============================================================================= - #ifndef ACE_TOKEN_H #define ACE_TOKEN_H #include "ace/pre.h" @@ -105,7 +104,7 @@ public: /** * An optimized method that efficiently reacquires the token if no * other threads are waiting. This is useful for situations where - * you don't want to degrad the quality of service if there are + * you don't want to degrade the quality of service if there are * other threads waiting to get the token. If <requeue_position> == * -1 and there are other threads waiting to obtain the token we are * queued at the end of the list of waiters. If <requeue_position> diff --git a/ace/Typed_SV_Message_Queue.h b/ace/Typed_SV_Message_Queue.h index 46d952f40ce..20d2ec690c2 100644 --- a/ace/Typed_SV_Message_Queue.h +++ b/ace/Typed_SV_Message_Queue.h @@ -1,17 +1,15 @@ /* -*- C++ -*- */ - //============================================================================= /** * @file Typed_SV_Message_Queue.h * * $Id$ * - * @author Doug Schmidt + * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> */ //============================================================================= - #ifndef ACE_TYPED_MESSAGE_QUEUE_H #define ACE_TYPED_MESSAGE_QUEUE_H #include "ace/pre.h" @@ -27,7 +25,7 @@ /** * @class ACE_Typed_SV_Message_Queue * - * @brief Defines the header file for the C++ wrapper for message queues. + * @brief Defines the header file for the C++ wrapper facade for typed message queues. */ template <class T> class ACE_Typed_SV_Message_Queue |