summaryrefslogtreecommitdiff
path: root/TAO/tests/Two_Objects/worker.cpp
diff options
context:
space:
mode:
authordengg <dengg@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-01-08 18:04:16 +0000
committerdengg <dengg@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-01-08 18:04:16 +0000
commitf2467c5915867c006aa16fd22e482816e029a2db (patch)
tree61d8fcb4aa8a71d9034ff510ee52b2b7ca13fb5c /TAO/tests/Two_Objects/worker.cpp
parenta2b8eda5d51dca5496c94600a7d3082b1a5f3601 (diff)
downloadATCD-ReDaC_01.tar.gz
made a copyReDaC_01
Diffstat (limited to 'TAO/tests/Two_Objects/worker.cpp')
-rw-r--r--TAO/tests/Two_Objects/worker.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/tests/Two_Objects/worker.cpp b/TAO/tests/Two_Objects/worker.cpp
index ae0889a419a..b1581d8baa9 100644
--- a/TAO/tests/Two_Objects/worker.cpp
+++ b/TAO/tests/Two_Objects/worker.cpp
@@ -6,7 +6,7 @@
Worker::Worker (CORBA::ORB_ptr orb, int time)
: orb_ (CORBA::ORB::_duplicate (orb)),
- orb_timeout_(time)
+ timeout_(time)
{
}
@@ -17,9 +17,9 @@ Worker::svc (void)
ACE_TRY
{
- ACE_Time_Value tv (orb_timeout_);
+ ACE_Time_Value tv (timeout_);
- // orb times out after <timeout> seconds
+ ///orb times out after <timeout> seconds
this->orb_->run (tv ACE_ENV_ARG_PARAMETER);
ACE_TRY_CHECK;
}