summaryrefslogtreecommitdiff
path: root/TAO/tao/ORB.cpp
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-02-13 17:24:35 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-02-13 17:24:35 +0000
commitcff32df027b57c8031be6b82b9b5abdece590217 (patch)
tree079a1934623c4682eb382c1cdb3c96e95eee58ac /TAO/tao/ORB.cpp
parent98873ef7f4e0aed5a26266f9e857d67247dce2b7 (diff)
downloadATCD-cff32df027b57c8031be6b82b9b5abdece590217.tar.gz
ChangeLogTag:Tue Feb 13 09:17:30 2001 Carlos O'Ryan <coryan@uci.edu>
Diffstat (limited to 'TAO/tao/ORB.cpp')
-rw-r--r--TAO/tao/ORB.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/TAO/tao/ORB.cpp b/TAO/tao/ORB.cpp
index 64f1ae6e359..3f6fe0ea2ac 100644
--- a/TAO/tao/ORB.cpp
+++ b/TAO/tao/ORB.cpp
@@ -227,41 +227,41 @@ CORBA_ORB::destroy (CORBA::Environment &ACE_TRY_ENV)
this->orb_core_ = 0;
}
-int
+void
CORBA_ORB::run (CORBA::Environment &ACE_TRY_ENV)
{
- return this->run (0, ACE_TRY_ENV);
+ this->run (0, ACE_TRY_ENV);
}
-int
+void
CORBA_ORB::run (ACE_Time_Value &tv, CORBA::Environment &ACE_TRY_ENV)
{
- return this->run (&tv, ACE_TRY_ENV);
+ this->run (&tv, ACE_TRY_ENV);
}
-int
+void
CORBA_ORB::run (ACE_Time_Value *tv,
CORBA::Environment &ACE_TRY_ENV)
{
this->check_shutdown (ACE_TRY_ENV);
ACE_CHECK_RETURN (-1);
- return this->orb_core ()->run (tv, 0, ACE_TRY_ENV);
+ this->orb_core ()->run (tv, 0, ACE_TRY_ENV);
}
-int
+void
CORBA_ORB::perform_work (CORBA::Environment &ACE_TRY_ENV)
{
- return this->perform_work (0, ACE_TRY_ENV);
+ this->perform_work (0, ACE_TRY_ENV);
}
-int
+void
CORBA_ORB::perform_work (ACE_Time_Value &tv, CORBA::Environment &ACE_TRY_ENV)
{
- return this->perform_work (&tv, ACE_TRY_ENV);
+ this->perform_work (&tv, ACE_TRY_ENV);
}
-int
+void
CORBA_ORB::perform_work (ACE_Time_Value *tv,
CORBA::Environment &ACE_TRY_ENV)
{
@@ -269,7 +269,7 @@ CORBA_ORB::perform_work (ACE_Time_Value *tv,
this->check_shutdown (ACE_TRY_ENV);
ACE_CHECK_RETURN (-1);
- return this->orb_core ()->run (tv, 1, ACE_TRY_ENV);
+ this->orb_core ()->run (tv, 1, ACE_TRY_ENV);
}
CORBA::Boolean