diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 1999-08-22 16:25:30 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 1999-08-22 16:25:30 +0000 |
commit | 5959341d089dd0aa3646348c27a3c3e7a4095762 (patch) | |
tree | 18074cd8edf649f278c7f75326c89b72e03b6a9c /TAO/tao/ORB.cpp | |
parent | 2939ea8307c174e86a64e17a09377123781e531a (diff) | |
download | ATCD-5959341d089dd0aa3646348c27a3c3e7a4095762.tar.gz |
ChangeLogTag:Sun Aug 22 09:48:40 1999 Ossama Othman <othman@cs.wustl.edu>
Diffstat (limited to 'TAO/tao/ORB.cpp')
-rw-r--r-- | TAO/tao/ORB.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/TAO/tao/ORB.cpp b/TAO/tao/ORB.cpp index f25fd6b816f..5d3b4c02ec4 100644 --- a/TAO/tao/ORB.cpp +++ b/TAO/tao/ORB.cpp @@ -1659,16 +1659,17 @@ CORBA_ORB::_get_collocated_servant (TAO_Stub *sobj, if (sobj == 0) return TAO_SERVANT_NOT_FOUND; - // @@ What about forwarding. Which this approach we are never forwarded + // @@ What about forwarding. Whith this approach we are never forwarded // when we use collocation! - const TAO_MProfile &mprofile = sobj->get_base_profiles (); + const TAO_MProfile &mprofile = sobj->base_profiles (); { // @@ Ossama: maybe we need another lock for the table, to // reduce contention on the Static_Object_Lock below, if so // then we need to use that lock in the ORB_init() function. ACE_MT (ACE_GUARD_RETURN (ACE_SYNCH_RECURSIVE_MUTEX, guard, - *ACE_Static_Object_Lock::instance (), TAO_SERVANT_NOT_FOUND)); + *ACE_Static_Object_Lock::instance (), + TAO_SERVANT_NOT_FOUND)); TAO_ORB_Table *table = TAO_ORB_Table::instance (); TAO_ORB_Table::Iterator end = table->end (); |