diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1999-03-30 17:05:24 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1999-03-30 17:05:24 +0000 |
commit | ddc2ea45b1c0c3097b14871e45381a91db74ebe4 (patch) | |
tree | 34162253fa39f3f21129c6ff652a82fe972fbcc7 | |
parent | 15c3e8ef5fe77aa8fc4abd3489c216bba667ab5d (diff) | |
download | ATCD-ddc2ea45b1c0c3097b14871e45381a91db74ebe4.tar.gz |
.
-rw-r--r-- | ChangeLog-99b | 6 | ||||
-rw-r--r-- | ace/Synch.h | 3 |
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog-99b b/ChangeLog-99b index 74cecc01cc3..c7461de7817 100644 --- a/ChangeLog-99b +++ b/ChangeLog-99b @@ -1,3 +1,9 @@ +Tue Mar 30 11:03:31 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu> + + * ace/Synch.h (ACE_Adaptive_Lock): Clarified a comment about how + to define a constructor in a subclass that initializes the + lock_. Thanks to Michael Kircher for reporting this. + Tue Mar 30 10:37:43 1999 Ossama Othman <othman@cs.wustl.edu> * ace/OS.i (getpwnam_r): Added patch contributed by Roland Gigler diff --git a/ace/Synch.h b/ace/Synch.h index aea73256752..21415ad495a 100644 --- a/ace/Synch.h +++ b/ace/Synch.h @@ -105,7 +105,8 @@ class ACE_Export ACE_Adaptive_Lock : public ACE_Lock // This class, as ACE_Lock, provide a set of general locking APIs. // However, it defers our decision of what kind of lock to use // to the run time and delegates all locking operations to the actual - // lock. Users must overwrite the constructor to initialize <lock_>. + // lock. Users must define a constructor in their subclass to + // initialize <lock_>. public: virtual ~ACE_Adaptive_Lock (void); // You must also override the destructor function to match with how |