summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Runtime_Scheduler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Runtime_Scheduler.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/Runtime_Scheduler.cpp8
1 files changed, 2 insertions, 6 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Runtime_Scheduler.cpp b/TAO/orbsvcs/orbsvcs/Runtime_Scheduler.cpp
index 1d8f66b8315..57df6a30ee3 100644
--- a/TAO/orbsvcs/orbsvcs/Runtime_Scheduler.cpp
+++ b/TAO/orbsvcs/orbsvcs/Runtime_Scheduler.cpp
@@ -4,10 +4,6 @@
#include "orbsvcs/Runtime_Scheduler.h"
#include "ace/OS_NS_string.h"
-#if defined (__ACE_INLINE__)
-#include "orbsvcs/Runtime_Scheduler.i"
-#endif /* __ACE_INLINE__ */
-
ACE_RCSID (orbsvcs,
Runtime_Scheduler,
"$Id$")
@@ -131,10 +127,10 @@ ACE_Runtime_Scheduler::set (RtecScheduler::handle_t handle,
|| rt_info_[handle - 1].cached_execution_time != cached_time
|| rt_info_[handle - 1].period != period
|| rt_info_[handle - 1].criticality != criticality
- || rt_info_[handle - 1].importance != ACE_static_cast (CORBA::Long, importance)
+ || rt_info_[handle - 1].importance != static_cast<CORBA::Long> (importance)
|| rt_info_[handle - 1].quantum != quantum
|| rt_info_[handle - 1].info_type != info_type
- || rt_info_[handle - 1].threads != ACE_static_cast (CORBA::Long, threads))
+ || rt_info_[handle - 1].threads != static_cast<CORBA::Long> (threads))
ACE_ERROR ((LM_ERROR,
"invalid data for RT_Info: %s\n",
(const char*)rt_info_[handle - 1].entry_point));