summaryrefslogtreecommitdiff
path: root/TAO/tao/MProfile.h
diff options
context:
space:
mode:
authorfredk <fredk@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-05-30 03:43:17 +0000
committerfredk <fredk@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-05-30 03:43:17 +0000
commit501ebb67b50fc0a314715b5c99151eb42ede5a3d (patch)
treedf54db23addc418e9a9053eb6c4ea68efa6b2332 /TAO/tao/MProfile.h
parent41a387ca4bfacbb196f6bb85d9c8cbeee02f8af5 (diff)
downloadATCD-pluggable_testing_branch.tar.gz
Fixed a cruddy interface for is_equivalentpluggable_testing_branch
Diffstat (limited to 'TAO/tao/MProfile.h')
-rw-r--r--TAO/tao/MProfile.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/TAO/tao/MProfile.h b/TAO/tao/MProfile.h
index 13de8fa3330..93055b59ad9 100644
--- a/TAO/tao/MProfile.h
+++ b/TAO/tao/MProfile.h
@@ -128,18 +128,22 @@ public:
TAO_MProfile *forward_from (void);
// Returns a pointer to the profile which was forwarded.
- CORBA::Boolean is_equivalent (TAO_MProfile *first,
- TAO_MProfile *second,
+ CORBA::Boolean is_equivalent (TAO_MProfile *rhs,
CORBA::Environment &env);
// Returns true of there is at least one profile in first which
// is_equivalent with at least one profile in second. @@ FRED: The
// lost should be locked for this!
+ // Yes, the Stub object has been the only object that manipulated
+ // these list and thus it took care of locking. This is changing
+ // though so we may have to add a lock to this list. Althouch I
+ // really don't want to.
CORBA::ULong hash (CORBA::ULong max,
CORBA::Environment &env);
// use all registered profiles. The hash() method is called on each
// profile and the results are averaged together.
// @@ FRED: The list should be locked for this!
+ // See above comment.
protected:
TAO_Profile_ptr *pfiles (void) const;