summaryrefslogtreecommitdiff
path: root/ace
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2002-11-28 07:28:06 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2002-11-28 07:28:06 +0000
commit823499c23f056bebffe961b8a0c81755d67d966b (patch)
tree89132c7232c76f5d697b14b78fabbd9111b65bb0 /ace
parent2a717c6e4322d56d483e1b3d7400d682a3742cae (diff)
downloadATCD-823499c23f056bebffe961b8a0c81755d67d966b.tar.gz
ChangeLogTag: Thu Nov 28 07:22:12 UTC 2002 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ace')
-rw-r--r--ace/Framework_Component.h30
-rw-r--r--ace/Strategies_T.h10
-rw-r--r--ace/TLI_Connector.i4
-rw-r--r--ace/Typed_SV_Message_Queue.h2
4 files changed, 23 insertions, 23 deletions
diff --git a/ace/Framework_Component.h b/ace/Framework_Component.h
index d5afe8ebe2d..f38204e1811 100644
--- a/ace/Framework_Component.h
+++ b/ace/Framework_Component.h
@@ -5,18 +5,18 @@
*
* $Id$
*
- * A prototype mechanism that allows framework components, singletons
- * such as ACE_Reactor, ACE_Proactor, etc, to be registered with a
- * central repository managed by the <ACE_Object_Manager> or
- * <ACE_Service_Config> that will handle destruction.
+ * A prototype mechanism that allows framework components, singletons
+ * such as ACE_Reactor, ACE_Proactor, etc, to be registered with a
+ * central repository managed by the <ACE_Object_Manager> or
+ * <ACE_Service_Config> that will handle destruction.
*
- * This technique obviates changing <ACE_Object_Manager> and
- * <ACE_Service_Config> everytime a new framework is added. Which also
- * means that unused framework components don't need to linked into
- * the final application which is important for applications with
+ * This technique obviates changing ACE_Object_Manager and
+ * ACE_Service_Config everytime a new framework is added. Which also
+ * means that unused framework components don't need to linked into
+ * the final application which is important for applications with
* stringent footprint requirements.
*
- * Framework components need only provide a static method,
+ * Framework components need only provide a static method,
* close_singleton() and add the ACE_REGISTER_FRAMEWORK_COMPONENT macro
* call to their instance() methods in order to participate. Components
* that don't have a close_singleton() method can also participate via
@@ -56,7 +56,7 @@ public:
friend class ACE_Framework_Repository;
/// Constructor.
- ACE_Framework_Component (void *_this,
+ ACE_Framework_Component (void *_this,
const ACE_TCHAR *dll_name = 0,
const ACE_TCHAR *name = 0);
@@ -81,9 +81,9 @@ private:
/**
* @class ACE_Framework_Repository
*
- * @brief Contains all framework components used by an application.
+ * @brief Contains all framework components used by an application.
*
- * This class contains a vector of <ACE_Framework_Component> *'s. On
+ * This class contains a vector of ACE_Framework_Component *'s. On
* destruction, framework components are destroyed in the reverse order
* that they were added originally.
*/
@@ -110,7 +110,7 @@ public:
int close (void);
/// Get pointer to a process-wide <ACE_Framework_Repository>.
- static ACE_Framework_Repository *instance
+ static ACE_Framework_Repository *instance
(int size = ACE_Framework_Repository::DEFAULT_SIZE);
/// Delete the dynamically allocated Singleton.
@@ -163,12 +163,12 @@ private:
/// Maximum number of components.
int total_size_;
- /// Pointer to a process-wide <ACE_Framework_Repository>.
+ /// Pointer to a process-wide ACE_Framework_Repository.
static ACE_Framework_Repository *repository_;
/// Flag set when repository is the process of shutting down. This
/// is necessary to keep from self-deadlocking since some of
- /// the components might make calls back to the repository to
+ /// the components might make calls back to the repository to
/// unload their components, e.g., ACE_DLL_Manager.
static sig_atomic_t shutting_down_;
diff --git a/ace/Strategies_T.h b/ace/Strategies_T.h
index 6891d1d4b88..8fb6d39f7f9 100644
--- a/ace/Strategies_T.h
+++ b/ace/Strategies_T.h
@@ -93,8 +93,8 @@ public:
ACE_Creation_Strategy (ACE_Thread_Manager * = 0,
ACE_Reactor * = ACE_Reactor::instance ());
- /// A <Thread_Manager> is useful when creating active objects and
- /// the <ACE_Reactor> is used to initialize the service handler's reactor.
+ /// An ACE_Thread_Manager is useful when creating active objects and
+ /// the ACE_Reactor is used to initialize the service handler's reactor.
int open (ACE_Thread_Manager * = 0,
ACE_Reactor * = ACE_Reactor::instance ());
@@ -669,7 +669,7 @@ class ACE_Schedule_All_Reactive_Strategy
public:
// Useful STL-style traits.
- typedef ACE_Scheduling_Strategy<SVC_HANDLER> base_type;
+ typedef ACE_Scheduling_Strategy<SVC_HANDLER> base_type;
// = Initialization and termination methods.
/// Constructor
@@ -688,7 +688,7 @@ public:
protected:
- /// Thread Manager
+ /// Reactor
ACE_Reactor *reactor_;
};
@@ -831,7 +831,7 @@ public:
// Useful STL-style traits.
typedef ACE_Creation_Strategy<SVC_HANDLER>
creation_strategy_type;
- typedef ACE_Connect_Strategy<SVC_HANDLER, ACE_PEER_CONNECTOR_2>
+ typedef ACE_Connect_Strategy<SVC_HANDLER, ACE_PEER_CONNECTOR_2>
connect_strategy_type;
typedef ACE_Concurrency_Strategy<SVC_HANDLER>
concurrency_strategy_type;
diff --git a/ace/TLI_Connector.i b/ace/TLI_Connector.i
index 9aa873dcd1f..6539e19a6cd 100644
--- a/ace/TLI_Connector.i
+++ b/ace/TLI_Connector.i
@@ -14,8 +14,8 @@ ACE_TLI_Connector::ACE_TLI_Connector (ACE_TLI_Stream &new_stream,
const char device[],
struct t_info *info,
int rw_flag,
- netbuf *udata,
- netbuf *opt)
+ struct netbuf *udata,
+ struct netbuf *opt)
{
ACE_TRACE ("ACE_TLI_Connector::ACE_TLI_Connector");
if (this->connect (new_stream,
diff --git a/ace/Typed_SV_Message_Queue.h b/ace/Typed_SV_Message_Queue.h
index 7cc37c2dcca..9b12b694bc5 100644
--- a/ace/Typed_SV_Message_Queue.h
+++ b/ace/Typed_SV_Message_Queue.h
@@ -56,7 +56,7 @@ public:
/// Recv method.
int recv (ACE_Typed_SV_Message<T> &mb, int mflags = 0);
- /// Return the id of the underlying <ACE_SV_Message_Queue>.
+ /// Return the id of the underlying ACE_SV_Message_Queue.
int get_id (void) const;
/// Control the underlying message queue.