summaryrefslogtreecommitdiff
path: root/TAO/tao/RTScheduling/Request_Interceptor.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/RTScheduling/Request_Interceptor.h')
-rw-r--r--TAO/tao/RTScheduling/Request_Interceptor.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/TAO/tao/RTScheduling/Request_Interceptor.h b/TAO/tao/RTScheduling/Request_Interceptor.h
index 5eaffea8a89..879d73a7876 100644
--- a/TAO/tao/RTScheduling/Request_Interceptor.h
+++ b/TAO/tao/RTScheduling/Request_Interceptor.h
@@ -13,14 +13,13 @@
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
-extern ACE_Atomic_Op<TAO_SYNCH_MUTEX, long> server_guid_counter;
+extern std::atomic<long> server_guid_counter;
class TAO_RTScheduler_Export Client_Interceptor:
public PortableInterceptor::ClientRequestInterceptor,
public ::CORBA::LocalObject
{
public:
-
// Client_Interceptor (RTScheduling::Current_ptr current);
virtual void send_request (PortableInterceptor::ClientRequestInfo_ptr ri);
@@ -37,14 +36,12 @@ public:
virtual void destroy (void);
static const IOP::ServiceId SchedulingInfo;
-
};
class TAO_RTScheduler_Export Server_Interceptor :
public PortableInterceptor::ServerRequestInterceptor,
public ::CORBA::LocalObject
{
-
public:
Server_Interceptor (TAO_RTScheduler_Current_ptr current);
@@ -66,7 +63,6 @@ public:
private:
TAO_RTScheduler_Current_var current_;
-
};
TAO_END_VERSIONED_NAMESPACE_DECL