summaryrefslogtreecommitdiff
path: root/CIAO/performance-tests
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2010-04-14 07:28:33 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2010-04-14 07:28:33 +0000
commitfa2d85330085fc10816826ae932ff6939357b751 (patch)
tree8181081122b6c72ed9a1c13322138f9140c702fb /CIAO/performance-tests
parent531a0ec6cc4ac70a0c4a540c36b48d3297b07fe6 (diff)
downloadATCD-fa2d85330085fc10816826ae932ff6939357b751.tar.gz
Wed Apr 14 07:29:12 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>
* ciao/Servants/Connector_Servant_Impl_Base.h: Removed obsolete include * ciao/Servants/Servant_Impl_Base.cpp: Removed unneeded return after throw * DAnCE/Plan_Launcher/Plan_Launcher.cpp: layout changes for debug message * examples/DevGuideExamples/Messenger/Administrator_Client.cpp: Don't use full CCM methods * performance-tests/Benchmark/RoundTrip/client.cpp: Const changes
Diffstat (limited to 'CIAO/performance-tests')
-rw-r--r--CIAO/performance-tests/Benchmark/RoundTrip/client.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/CIAO/performance-tests/Benchmark/RoundTrip/client.cpp b/CIAO/performance-tests/Benchmark/RoundTrip/client.cpp
index a365068b76f..d342d23a6cb 100644
--- a/CIAO/performance-tests/Benchmark/RoundTrip/client.cpp
+++ b/CIAO/performance-tests/Benchmark/RoundTrip/client.cpp
@@ -61,7 +61,7 @@ parse_args (int argc, ACE_TCHAR *argv[])
void
set_priority ()
{
- int priority =
+ int const priority =
(ACE_Sched_Params::priority_min (ACE_SCHED_FIFO)
+ ACE_Sched_Params::priority_max (ACE_SCHED_FIFO)) / 2;
// Enable FIFO scheduling, e.g., RT scheduling class on Solaris.
@@ -115,7 +115,7 @@ ACE_TMAIN (int argc, ACE_TCHAR *argv[])
// Get the RoundTrip reference
obj = test->provide_facet ("latency");
- Benchmark::LatencyTest_var round_trip =
+ Benchmark::LatencyTest_var round_trip =
Benchmark::LatencyTest::_narrow (obj.in ());
if (CORBA::is_nil (round_trip.in ()))