diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2011-03-28 11:22:55 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2011-03-28 11:22:55 +0000 |
commit | eb1cc98daf4898d654953e1a6fd8f8510047610e (patch) | |
tree | 801513218ec472046a90feb79feee625f7383080 /TAO/examples/AMI | |
parent | 2e808135a67f50c8d208728fc17b106eba9de366 (diff) | |
download | ATCD-eb1cc98daf4898d654953e1a6fd8f8510047610e.tar.gz |
Mon Mar 28 11:21:51 UTC 2011 Johnny Willemsen <jwillemsen@remedy.nl>
* examples/AMI/FL_Callback/peer.cpp:
* examples/Callback_Quoter/Consumer_Handler.cpp:
* examples/Callback_Quoter/Consumer_Signal_Handler.cpp:
* examples/Event_Comm/Event_Comm_i.cpp:
* examples/Event_Comm/consumer.cpp:
* examples/Quoter/Factory_Finder.cpp:
* examples/Quoter/Factory_Finder_i.cpp:
* examples/Quoter/server.cpp:
* orbsvcs/examples/CosEC/RtEC_Based/lib/ConsumerAdmin_i.h:
* orbsvcs/examples/CosEC/Simple/Consumer.h:
* orbsvcs/examples/CosEC/Simple/Supplier.h:
* orbsvcs/tests/CosEvent/lib/Counting_Consumer.h:
* orbsvcs/tests/CosEvent/lib/Counting_Supplier.h:
* performance-tests/POA/Demux/client.cpp:
* performance-tests/POA/Demux/server.cpp:
* tests/Bug_2935_Regression/sink_i.h:
* tests/CSD_Collocation/Collocation_Tester.h:
* tests/CodeSets/libs/UTF16_UCS2/UTF16_UCS2_Factory.h:
* tests/DSI_Gateway/test_dsi.h:
* tests/NestedUpcall/MT_Client_Test/MT_Object_i.h:
* tests/NestedUpcall/MT_Client_Test/MT_Object_i.cpp:
* tests/NestedUpcall/MT_Client_Test/client.h:
* tests/NestedUpcall/MT_Client_Test/local_server.h:
* tests/NestedUpcall/MT_Client_Test/server.h:
* tests/OBV/Simple/Simple_util.h:
* tests/Xt_Stopwatch/Stopwatch_display.h:
Fuzz fixes
Diffstat (limited to 'TAO/examples/AMI')
-rw-r--r-- | TAO/examples/AMI/FL_Callback/peer.cpp | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/TAO/examples/AMI/FL_Callback/peer.cpp b/TAO/examples/AMI/FL_Callback/peer.cpp index 6df074273cc..39a19803ca3 100644 --- a/TAO/examples/AMI/FL_Callback/peer.cpp +++ b/TAO/examples/AMI/FL_Callback/peer.cpp @@ -46,24 +46,23 @@ parse_args (int argc, ACE_TCHAR *argv[]) return 0; } +/** + * Run a server thread + * + * Use the ACE_Task_Base class to run server threads + */ class Worker : public ACE_Task_Base { - // = TITLE - // Run a server thread - // - // = DESCRIPTION - // Use the ACE_Task_Base class to run server threads - // public: + /// ctor Worker (CORBA::ORB_ptr orb); - // ctor + /// The thread entry point. virtual int svc (void); - // The thread entry point. private: + /// The orb CORBA::ORB_var orb_; - // The orb }; int |