diff options
author | bala <balanatarajan@users.noreply.github.com> | 2001-09-07 22:15:27 +0000 |
---|---|---|
committer | bala <balanatarajan@users.noreply.github.com> | 2001-09-07 22:15:27 +0000 |
commit | 10f5b61fa0af804e0275a42bd95b7bf9d7dd00cd (patch) | |
tree | c73733d5012a783587919499d81f3f13ee3719d6 | |
parent | 819b4b12c0afc29b23abf828d890c485e262b75d (diff) | |
download | ATCD-10f5b61fa0af804e0275a42bd95b7bf9d7dd00cd.tar.gz |
ChangeLogTag: Fri Sep 7 17:09:04 2001 Balachandran Natarajan <bala@cs.wustl.edu>
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | ChangeLogs/ChangeLog-02a | 8 | ||||
-rw-r--r-- | ChangeLogs/ChangeLog-03a | 8 | ||||
-rw-r--r-- | tests/Thread_Pool_Reactor_Resume_Test.cpp | 3 |
4 files changed, 26 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 5884e29c50f..d6bcccdd3d0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +Fri Sep 7 17:09:04 2001 Balachandran Natarajan <bala@cs.wustl.edu> + + * tests/Thread_Pool_Reactor_Resume_Test.cpp: Initialised the lock + to null in the constrcutor before allocating memory for + it. This was done to remove the ABW errors in + purify. This should remove the problem that we see with this + test in our daily builds with SunCC 4.2. + Fri Sep 7 15:51:48 2001 Balachandran Natarajan <bala@cs.wustl.edu> * tests/Logging_Strategy_Test.cpp: Included Auto_Ptr.h. diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a index 5884e29c50f..d6bcccdd3d0 100644 --- a/ChangeLogs/ChangeLog-02a +++ b/ChangeLogs/ChangeLog-02a @@ -1,3 +1,11 @@ +Fri Sep 7 17:09:04 2001 Balachandran Natarajan <bala@cs.wustl.edu> + + * tests/Thread_Pool_Reactor_Resume_Test.cpp: Initialised the lock + to null in the constrcutor before allocating memory for + it. This was done to remove the ABW errors in + purify. This should remove the problem that we see with this + test in our daily builds with SunCC 4.2. + Fri Sep 7 15:51:48 2001 Balachandran Natarajan <bala@cs.wustl.edu> * tests/Logging_Strategy_Test.cpp: Included Auto_Ptr.h. diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a index 5884e29c50f..d6bcccdd3d0 100644 --- a/ChangeLogs/ChangeLog-03a +++ b/ChangeLogs/ChangeLog-03a @@ -1,3 +1,11 @@ +Fri Sep 7 17:09:04 2001 Balachandran Natarajan <bala@cs.wustl.edu> + + * tests/Thread_Pool_Reactor_Resume_Test.cpp: Initialised the lock + to null in the constrcutor before allocating memory for + it. This was done to remove the ABW errors in + purify. This should remove the problem that we see with this + test in our daily builds with SunCC 4.2. + Fri Sep 7 15:51:48 2001 Balachandran Natarajan <bala@cs.wustl.edu> * tests/Logging_Strategy_Test.cpp: Included Auto_Ptr.h. diff --git a/tests/Thread_Pool_Reactor_Resume_Test.cpp b/tests/Thread_Pool_Reactor_Resume_Test.cpp index 27cfc54c34a..d34a3e8a20c 100644 --- a/tests/Thread_Pool_Reactor_Resume_Test.cpp +++ b/tests/Thread_Pool_Reactor_Resume_Test.cpp @@ -120,7 +120,8 @@ parse_arg (int argc, ACE_TCHAR *argv[]) Request_Handler::Request_Handler (ACE_Thread_Manager *thr_mgr) : ACE_Svc_Handler<ACE_SOCK_STREAM, ACE_MT_SYNCH> (thr_mgr), nr_msgs_rcvd_(0), - ref_count_ (1) + ref_count_ (1), + refcount_lock_ (0) { // Make sure we use TP_Reactor with this class (that's the whole // point, right?) |