diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1998-10-16 21:06:46 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1998-10-16 21:06:46 +0000 |
commit | 3698d90248c2e4b15d89473e0a398f71ce6b4553 (patch) | |
tree | c1fb9b4b5bdb1f07b43f38d7081b7c060a1e8809 /ace/Hash_Map_Manager.h | |
parent | 268474bfe852a7d88cc95de11189a05610030739 (diff) | |
download | ATCD-3698d90248c2e4b15d89473e0a398f71ce6b4553.tar.gz |
.
Diffstat (limited to 'ace/Hash_Map_Manager.h')
-rw-r--r-- | ace/Hash_Map_Manager.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/ace/Hash_Map_Manager.h b/ace/Hash_Map_Manager.h index c7559e9f3ef..ff382618459 100644 --- a/ace/Hash_Map_Manager.h +++ b/ace/Hash_Map_Manager.h @@ -220,8 +220,9 @@ public: // Returns a reference to the underlying <ACE_LOCK>. This makes it // possible to acquire the lock explicitly, which can be useful in // some cases if you instantiate the <ACE_Atomic_Op> with an - // <ACE_Recursive_Mutex> or <ACE_Process_Mutex>. NOTE: the right - // name would be lock_, but HP/C++ will choke on that! + // <ACE_Recursive_Mutex> or <ACE_Process_Mutex>, or if you need to + // guard the state of an iterator. NOTE: the right name would be + // <lock>, but HP/C++ will choke on that! void dump (void) const; // Dump the state of an object. @@ -395,9 +396,6 @@ protected: ACE_Hash_Map_Entry<EXT_ID, INT_ID> *next_; // Keeps track of how far we've advanced in a linked list in each // table slot. - - ACE_Read_Guard<ACE_LOCK> guard_; - // Read guard for the life time of the iterator. }; template <class EXT_ID, class INT_ID, class ACE_LOCK> |