summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/examples
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2017-01-02 12:37:10 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2017-01-02 12:37:10 +0100
commitb9aa5bd4892d0de338420540480fc5a1f11cfae7 (patch)
treef550e6b860a391ba37d62073eee6f706e610cdbc /TAO/orbsvcs/examples
parent888473f332f9a3f57cf31036c72ce51782883e2c (diff)
downloadATCD-b9aa5bd4892d0de338420540480fc5a1f11cfae7.tar.gz
Fixed typo
* ACE/ACEXML/common/DTD_Manager.h: * ACE/ACEXML/common/NamespaceSupport.h: * ACE/ACEXML/parser/debug_validator/Debug_DTD_Manager.h: * ACE/ace/Containers_T.h: * ACE/ace/DLL.h: * ACE/ace/QoS/QoS_Session.h: * ACE/ace/QoS/QoS_Session_Impl.cpp: * ACE/ace/QoS/QoS_Session_Impl.h: * ACE/ace/RB_Tree.h: * ACE/ace/SSL/SSL_SOCK_Stream.cpp: * ACE/ace/SSL/SSL_SOCK_Stream.inl: * ACE/ace/Select_Reactor_T.cpp: * ACE/ace/TP_Reactor.cpp: * ACE/ace/Token.cpp: * ACE/apps/JAWS/clients/WebSTONE/src/nsapi-includes/base/file.h: * ACE/examples/APG/Signals/SigHandler.cpp: * ACE/examples/APG/Signals/SigHandlers.cpp: * ACE/examples/Reactor/Proactor/test_aiosig.cpp: * ACE/examples/Reactor/Proactor/test_aiosig_ace.cpp: * ACE/examples/Reactor/WFMO_Reactor/APC.cpp: * ACE/examples/Reactor/WFMO_Reactor/Abandoned.cpp: * ACE/examples/Reactor/WFMO_Reactor/Window_Messages.cpp: * ACE/tests/Cached_Accept_Conn_Test.cpp: * ACE/tests/Dev_Poll_Reactor_Echo_Test.cpp: * ACE/tests/Dev_Poll_Reactor_Test.cpp: * TAO/DevGuideExamples/PortableInterceptors/Auth/ServerInitializer.cpp: * TAO/examples/Content_Server/AMI_Observer/Callback_Handler.cpp: * TAO/orbsvcs/examples/Notify/Subscribe/Subscribe.h: * TAO/orbsvcs/examples/RtEC/Kokyu/Supplier.cpp: * TAO/orbsvcs/examples/RtEC/Kokyu/Supplier.h: * TAO/orbsvcs/orbsvcs/Event/EC_ObserverStrategy.cpp: * TAO/orbsvcs/orbsvcs/Naming/FaultTolerant/FT_Round_Robin.cpp: * TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connection_Handler.cpp: * TAO/orbsvcs/tests/Bug_1630_Regression/testclient.cpp: * TAO/orbsvcs/tests/Concurrency/CC_command.cpp: * TAO/orbsvcs/tests/Event/Mcast/Two_Way/application.cpp: * TAO/orbsvcs/tests/Notify/performance-tests/RedGreen/RedGreen_Test.h: * TAO/tao/Connection_Handler.cpp: * TAO/tao/IIOP_Connector.cpp: * TAO/tao/Invocation_Utils.h: * TAO/tao/LF_CH_Event.h: * TAO/tao/ORB_Core.cpp: * TAO/tao/Stub.h: * TAO/tao/Stub.inl: * TAO/tao/Transport.h: * TAO/tests/Bug_1495_Regression/Threaded_Server.cpp: * TAO/tests/Bug_1495_Regression/server_interceptor.cpp: * TAO/tests/Bug_3748_Regression/client.cpp: * TAO/tests/DII_AMI_Forward/server_interceptor.cpp: * TAO/tests/DynValue_Test/main.cpp: * TAO/tests/Explicit_Event_Loop/client.cpp: * TAO/tests/Explicit_Event_Loop/server.cpp: * TAO/tests/IORManipulation/IORTest.cpp: * TAO/tests/POA/On_Demand_Act_Direct_Coll/Collocated_Test.cpp: * TAO/tests/Portable_Interceptors/Bug_1559/server_interceptor.cpp: * TAO/tests/Portable_Interceptors/ForwardRequest/Client_Request_Interceptor.cpp: * TAO/tests/Portable_Interceptors/ForwardRequest/Server_Request_Interceptor.cpp: * TAO/tests/TransportCurrent/Framework/client.cpp: * TAO/tests/TransportCurrent/IIOP/client.cpp:
Diffstat (limited to 'TAO/orbsvcs/examples')
-rw-r--r--TAO/orbsvcs/examples/Notify/Subscribe/Subscribe.h2
-rw-r--r--TAO/orbsvcs/examples/RtEC/Kokyu/Supplier.cpp4
-rw-r--r--TAO/orbsvcs/examples/RtEC/Kokyu/Supplier.h2
3 files changed, 4 insertions, 4 deletions
diff --git a/TAO/orbsvcs/examples/Notify/Subscribe/Subscribe.h b/TAO/orbsvcs/examples/Notify/Subscribe/Subscribe.h
index 4e621fe9abf..1e1ba4a6a2f 100644
--- a/TAO/orbsvcs/examples/Notify/Subscribe/Subscribe.h
+++ b/TAO/orbsvcs/examples/Notify/Subscribe/Subscribe.h
@@ -41,7 +41,7 @@ class Subscribe
/// Run the demo.
void run (void);
- /// Called when all events we are waiting for have occured.
+ /// Called when all events we are waiting for have occurred.
void done (void);
protected:
diff --git a/TAO/orbsvcs/examples/RtEC/Kokyu/Supplier.cpp b/TAO/orbsvcs/examples/RtEC/Kokyu/Supplier.cpp
index bebbcd0bf16..a08693a781d 100644
--- a/TAO/orbsvcs/examples/RtEC/Kokyu/Supplier.cpp
+++ b/TAO/orbsvcs/examples/RtEC/Kokyu/Supplier.cpp
@@ -13,7 +13,7 @@ Supplier::Supplier (RtecEventComm::EventSourceID id,
}
void
-Supplier::timeout_occured (void)
+Supplier::timeout_occurred (void)
{
RtecEventComm::EventSet event (1);
if (id_ == 1)
@@ -55,7 +55,7 @@ Timeout_Consumer::push (const RtecEventComm::EventSet& events)
}
ACE_DEBUG ((LM_DEBUG, "(%t) Timeout Event received\n"));
- supplier_impl_->timeout_occured ();
+ supplier_impl_->timeout_occurred ();
}
void
diff --git a/TAO/orbsvcs/examples/RtEC/Kokyu/Supplier.h b/TAO/orbsvcs/examples/RtEC/Kokyu/Supplier.h
index d95f8923857..521175465fb 100644
--- a/TAO/orbsvcs/examples/RtEC/Kokyu/Supplier.h
+++ b/TAO/orbsvcs/examples/RtEC/Kokyu/Supplier.h
@@ -43,7 +43,7 @@ public:
/// The skeleton methods.
virtual void disconnect_push_supplier (void);
- void timeout_occured (void);
+ void timeout_occurred (void);
private:
RtecEventComm::EventSourceID id_;