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/Map_Manager.h | |
parent | 268474bfe852a7d88cc95de11189a05610030739 (diff) | |
download | ATCD-3698d90248c2e4b15d89473e0a398f71ce6b4553.tar.gz |
.
Diffstat (limited to 'ace/Map_Manager.h')
-rw-r--r-- | ace/Map_Manager.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/ace/Map_Manager.h b/ace/Map_Manager.h index 0e3c0b4fbb6..cbcb6a5a76f 100644 --- a/ace/Map_Manager.h +++ b/ace/Map_Manager.h @@ -178,8 +178,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. @@ -337,9 +338,6 @@ protected: ssize_t next_; // Keeps track of how far we've advanced... - - 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> |