summaryrefslogtreecommitdiff
path: root/TAO/tao/params.inl
diff options
context:
space:
mode:
authormcorino <mcorino@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2011-11-29 15:52:02 +0000
committermcorino <mcorino@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2011-11-29 15:52:02 +0000
commit49c98734fe736bc83d4be0681cc7231307891dba (patch)
tree085ff769176c170b8d86f436e0b9bf4dd116e792 /TAO/tao/params.inl
parente4c221321ec7715258af5139b0619e13d9d9b06f (diff)
downloadATCD-49c98734fe736bc83d4be0681cc7231307891dba.tar.gz
Tue Nov 29 15:50:06 UTC 2011 Martin Corino <mcorino@remedy.nl>
* ace/Timer_Queue_T.h: * ace/Timer_Queue_T.inl: Added get_timer_method() to be able reuse timer method setting. * ace/Countdown_Time.h: * ace/Countdown_Time.inl: * ace/Countdown_Time.cpp: Added option to use application defined timer like timer queue. * tao/ORB_Core.cpp: * tao/params.h: * tao/params.inl: * tao/params.cpp: Added -ORBUseHighresTimer ORB parameter switch to specifiy if the ORB should use the HR timer for the reactor timer queue and related objects (like countdowns). * tao/Transport.cpp: * tao/Leader_Follower.cpp: * tao/Messaging/Messaging_Queueing_Strategies.h: * tao/Messaging/Messaging_Queueing_Strategies.cpp: Changes to support the new UseHighresTimer switch.
Diffstat (limited to 'TAO/tao/params.inl')
-rw-r--r--TAO/tao/params.inl11
1 files changed, 11 insertions, 0 deletions
diff --git a/TAO/tao/params.inl b/TAO/tao/params.inl
index d148ea835e3..84f3202e3ad 100644
--- a/TAO/tao/params.inl
+++ b/TAO/tao/params.inl
@@ -151,6 +151,17 @@ TAO_ORB_Parameters::std_profile_components (bool x)
this->std_profile_components_ = x;
}
+ACE_INLINE bool
+TAO_ORB_Parameters::use_highres_timer (void) const
+{
+ return this->use_highres_timer_;
+}
+ACE_INLINE void
+TAO_ORB_Parameters::use_highres_timer (bool x)
+{
+ this->use_highres_timer_ = x;
+}
+
ACE_INLINE int
TAO_ORB_Parameters::nodelay (void) const
{