diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1999-05-14 15:38:51 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1999-05-14 15:38:51 +0000 |
commit | 81f1ae16416eb5d4cb703c2e2492bb6f7292eb3e (patch) | |
tree | 52cc478f005f7277a5d78e3b8b3e81bbe037ab79 | |
parent | cb8bfff3a99b113a310a3b86f7c459a8143b97b8 (diff) | |
download | ATCD-81f1ae16416eb5d4cb703c2e2492bb6f7292eb3e.tar.gz |
.
-rw-r--r-- | ChangeLog-99b | 6 | ||||
-rw-r--r-- | ace/SOCK_Dgram_Mcast.h | 2 | ||||
-rw-r--r-- | ace/Synch.h | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog-99b b/ChangeLog-99b index 670bc7513a6..f1d09114331 100644 --- a/ChangeLog-99b +++ b/ChangeLog-99b @@ -1,3 +1,9 @@ +Fri May 14 10:37:49 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu> + + * ace/Synch.h (ACE_Null_Mutex>): Commented out the ~ACE_Guard() + destructor to prevent segfaults on certain versions of SunC++. + Thanks to Russ Noseworthy for reporting this bizarre bug! + Fri May 14 09:51:55 1999 Carlos O'Ryan <coryan@cs.wustl.edu> * ace/Message_Block.h: diff --git a/ace/SOCK_Dgram_Mcast.h b/ace/SOCK_Dgram_Mcast.h index a5640829f7e..55d3ba832dd 100644 --- a/ace/SOCK_Dgram_Mcast.h +++ b/ace/SOCK_Dgram_Mcast.h @@ -34,7 +34,7 @@ class ACE_Export ACE_SOCK_Dgram_Mcast : public ACE_SOCK_Dgram public: // = Initialization routine. ACE_SOCK_Dgram_Mcast (void); - // Note that there is no open (). This cannot be used unless you + // Note that there is no <open>. This cannot be used unless you // subscribe to the multicast group. If you just want to send (and // not listen) to the multicast group, use ACE_SOCK_Dgram or // ACE_SOCK_CODgram. diff --git a/ace/Synch.h b/ace/Synch.h index 21415ad495a..dca0a975aed 100644 --- a/ace/Synch.h +++ b/ace/Synch.h @@ -1577,7 +1577,7 @@ public: // = Initialization and termination methods. ACE_Guard (ACE_Null_Mutex &) {} ACE_Guard (ACE_Null_Mutex &, int) {} - ~ACE_Guard (void) {} + // ~ACE_Guard (void) {} int acquire (void) { return 0; } int tryacquire (void) { return 0; } |