summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1999-01-17 21:37:34 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1999-01-17 21:37:34 +0000
commit70898a12c0aa6a402e67bf9ddba37eb16193831c (patch)
treec7d20053635f0f6c4af142ec02eedbd88b6db5c8
parent291e8a1056148fe573372121eea6b78a2db78803 (diff)
downloadATCD-70898a12c0aa6a402e67bf9ddba37eb16193831c.tar.gz
.
-rw-r--r--TAO/ChangeLog-99c7
-rw-r--r--TAO/orbsvcs/tests/EC_Multiple/EC_Multiple.cpp2
2 files changed, 8 insertions, 1 deletions
diff --git a/TAO/ChangeLog-99c b/TAO/ChangeLog-99c
index a53a6e86c91..ee81b380407 100644
--- a/TAO/ChangeLog-99c
+++ b/TAO/ChangeLog-99c
@@ -1,3 +1,10 @@
+Sun Jan 17 15:34:17 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
+
+ * orbsvcs/tests/EC_Multiple/EC_Multiple.cpp (wait_until_ready):
+ Replaced ACE_Thread_Mutex with ACE_SYNCH_MUTEX so that this will
+ compile properly with threads=0. Thanks to Russ Noseworthy for
+ reporting this!
+
Sat Jan 16 22:54:14 1999 Ossama Othman <othman@macarena.cs.wustl.edu>
* TAO_IDL/driver/drv_args.cpp (DRV_check_gperf):
diff --git a/TAO/orbsvcs/tests/EC_Multiple/EC_Multiple.cpp b/TAO/orbsvcs/tests/EC_Multiple/EC_Multiple.cpp
index 2d8ba257d33..7c56d2cf971 100644
--- a/TAO/orbsvcs/tests/EC_Multiple/EC_Multiple.cpp
+++ b/TAO/orbsvcs/tests/EC_Multiple/EC_Multiple.cpp
@@ -994,7 +994,7 @@ Test_ECG::push_consumer (void *consumer_cookie,
void
Test_ECG::wait_until_ready (void)
{
- ACE_GUARD (ACE_Thread_Mutex, ready_mon, this->ready_mtx_);
+ ACE_GUARD (ACE_SYNCH_MUTEX, ready_mon, this->ready_mtx_);
while (!this->ready_)
this->ready_cnd_.wait ();
}