diff options
author | vzykov <vzykov@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2010-02-02 11:13:27 +0000 |
---|---|---|
committer | vzykov <vzykov@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2010-02-02 11:13:27 +0000 |
commit | abb7ccc29c0c1ba966f8d198b6348f91cd2fcb74 (patch) | |
tree | 268d57ee07a9295cb53e10422a551c802452eb93 /TAO/tao/RTScheduling | |
parent | 5c28ac1e7a44ad3006bca53a0dcf10181ee9898b (diff) | |
download | ATCD-abb7ccc29c0c1ba966f8d198b6348f91cd2fcb74.tar.gz |
Tue Feb 2 11:07:14 UTC 2010 Vladimir Zykov <vladimir.zykov@prismtech.com>
* tests/Bug_1361_Regression/server.cpp:
* tests/Bug_1361_Regression/shutdown.cpp:
* tests/Bug_1361_Regression/client.cpp:
* tests/Bug_1361_Regression/Echo.cpp:
* tests/Bug_1361_Regression/Bug_1361_Regression.mpc:
Simplified the test. It used libTAO_Messaging without any
need for it.
* orbsvcs/orbsvcs/PortableGroup/PG_Property_Set_Find.h:
* tao/AnyTypeCode/Any_Array_Impl_T.cpp:
* tao/AnyTypeCode/Objref_TypeCode.cpp:
* tao/PortableServer/Any_SArg_Traits.h:
* tao/PortableServer/get_arg.h:
* tao/PI_Server/Policy_Creator_T.h:
* tao/Load_Protocol_Factory_T.h:
* tao/TransportCurrent/IIOP_Current_Impl.h:
* tao/Valuetype/Valuetype_Traits_Base_T.h:
Added required include.
* orbsvcs/orbsvcs/PortableGroup/UIPMC_Transport.h:
* tao/TransportCurrent/Current_ORBInitializer.h:
Removed unnecessary for templates export directive.
* tao/ImR_Client/ServerObject.pidl:
* tao/ImR_Client/ImplRepo.pidl:
* tao/AnyTypeCode/BasicTypeTraits.h:
* tao/IORTable/IORTable.pidl:
* tao/Object_Key.pidl:
* tao/TransportCurrent/Transport_Current.h:
* tao/TransportCurrent/IIOP_Transport_Current.h:
Added inclusion guards.
* tao/AnyTypeCode/Union_TypeCode.h:
Added necessary forward declaration.
* tao/PortableServer/Direct_Collocation_Upcall_Wrapper.h:
* tao/PortableServer/Upcall_Command.h:
* tao/PortableServer/Upcall_Wrapper.h:
* tao/Object_Reference_Traits_T.h:
* tao/String_Traits_T.h:
* tao/Value_Traits_T.h:
* tao/Array_Traits_T.h:
* tao/Utils/Servant_Var.inl:
* tao/Valuetype/Valuetype_Traits_T.h:
Changed 'ifndef ACE_LACKS_PRAGMA_ONCE' to
'if !defined (ACE_LACKS_PRAGMA_ONCE)'. So that ifndef is only used
for inclusion guards in TAO.
* tao/Transport.cpp:
Changed 0 to false for boolean type.
* tao/RTScheduling/ThreadAction.h:
Fixed code that didn't compile.
Diffstat (limited to 'TAO/tao/RTScheduling')
-rw-r--r-- | TAO/tao/RTScheduling/ThreadAction.h | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/TAO/tao/RTScheduling/ThreadAction.h b/TAO/tao/RTScheduling/ThreadAction.h index d34023a9606..2087805741e 100644 --- a/TAO/tao/RTScheduling/ThreadAction.h +++ b/TAO/tao/RTScheduling/ThreadAction.h @@ -8,19 +8,16 @@ # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ -#include "tao/RTScheduling/RTSchedulerC.h" +#include "tao/RTScheduling/RTScheduler.h" TAO_BEGIN_VERSIONED_NAMESPACE_DECL class TAO_RTScheduler_Export TAO_ThreadAction: -public RTScheduling::ThreadAction, + public RTScheduling::ThreadAction, public ::CORBA::LocalObject { - public: - - virtual void do (CORBA::VoidData data - ) - = 0; +public: + virtual void _cxx_do (CORBA::VoidData data) = 0; }; TAO_END_VERSIONED_NAMESPACE_DECL |