diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2009-02-03 19:46:05 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2009-02-03 19:46:05 +0000 |
commit | 64e50d000d5e189c47416da8e542c554d33f931f (patch) | |
tree | b05363f382283b9757202be6e4ac2c8d3c599c97 /ACE/ace/Strategies_T.h | |
parent | 4b6356b8f80b8e23aeb90fa0e59f05411272dff2 (diff) | |
download | ATCD-64e50d000d5e189c47416da8e542c554d33f931f.tar.gz |
Tue Feb 3 19:45:17 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Acceptor.h:
* ace/Active_Map_Manager_T.h:
* ace/CDR_Stream.h:
* ace/Configuration.h:
* ace/Connector.h:
* ace/Dev_Poll_Reactor.h:
* ace/Dirent.h:
* ace/Map_T.h:
* ace/Message_Block.h:
* ace/Message_Queue_Vx.h:
* ace/Name_Request_Reply.h:
* ace/Reactor.h:
* ace/Reactor_Impl.h:
* ace/Select_Reactor_Base.h:
* ace/Select_Reactor_T.h:
* ace/Strategies_T.h:
* ace/WFMO_Reactor.h:
Doxygen changes
* ace/Unbounded_Queue.h:
* ace/Unbounded_Queue.inl:
Use bool
Diffstat (limited to 'ACE/ace/Strategies_T.h')
-rw-r--r-- | ACE/ace/Strategies_T.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ACE/ace/Strategies_T.h b/ACE/ace/Strategies_T.h index 2dd8c2fd543..1318f27fe5d 100644 --- a/ACE/ace/Strategies_T.h +++ b/ACE/ace/Strategies_T.h @@ -107,7 +107,7 @@ public: /** * Create a SVC_HANDLER with the appropriate creation strategy. The * default behavior of this method is to make a new SVC_HANDLER if - * @a sh == 0 (passing in the <Thread_Manager>), else @a sh is + * @a sh == 0 (passing in the Thread_Manager), else @a sh is * unchanged. Returns -1 on failure, else 0. */ virtual int make_svc_handler (SVC_HANDLER *&sh); @@ -262,7 +262,7 @@ public: // = Factory method. /** - * Activate the <svc_handler> with an appropriate concurrency + * Activate the @a svc_handler with an appropriate concurrency * strategy. The default behavior of this method is to activate the * SVC_HANDLER by calling its <open> method (which allows the * SVC_HANDLER to define its own concurrency strategy). @@ -321,7 +321,7 @@ public: virtual ~ACE_Reactive_Strategy (void); // = Factory method. - /// Activate the <svc_handler> by registering it with the <Reactor> + /// Activate the @a svc_handler by registering it with the <Reactor> /// and then calling it's <open> hook. virtual int activate_svc_handler (SVC_HANDLER *svc_handler, void *arg = 0); @@ -875,7 +875,7 @@ public: /// Template method for making a new <svc_handler> virtual int make_svc_handler (SVC_HANDLER *&sh); - /// Template method for activating a new <svc_handler> + /// Template method for activating a new @a svc_handler virtual int activate_svc_handler (SVC_HANDLER *svc_handler); /// Template method for setting the recycler information of the |