summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/EC_Custom_Marshal
diff options
context:
space:
mode:
authorfhunleth <fhunleth@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-02-02 02:32:10 +0000
committerfhunleth <fhunleth@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-02-02 02:32:10 +0000
commit46b68f8886267752e21240d0d2a38aff51b08cb4 (patch)
treee6c4cb63722c260d6c229f938dc9a28800bf50ae /TAO/orbsvcs/tests/EC_Custom_Marshal
parent3b90547b819834d830be139f52dbbd436b561bbd (diff)
downloadATCD-46b68f8886267752e21240d0d2a38aff51b08cb4.tar.gz
ChangeLogTag: Thu Feb 1 20:29:54 2001 Frank Hunleth <fhunleth@cs.wustl.edu>
Diffstat (limited to 'TAO/orbsvcs/tests/EC_Custom_Marshal')
-rw-r--r--TAO/orbsvcs/tests/EC_Custom_Marshal/ECM_Consumer.cpp2
-rw-r--r--TAO/orbsvcs/tests/EC_Custom_Marshal/ECM_Consumer.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/TAO/orbsvcs/tests/EC_Custom_Marshal/ECM_Consumer.cpp b/TAO/orbsvcs/tests/EC_Custom_Marshal/ECM_Consumer.cpp
index 02060df5e7b..7b9dca0b336 100644
--- a/TAO/orbsvcs/tests/EC_Custom_Marshal/ECM_Consumer.cpp
+++ b/TAO/orbsvcs/tests/EC_Custom_Marshal/ECM_Consumer.cpp
@@ -188,7 +188,7 @@ Driver::push_consumer (void* /* consumer_cookie */,
return;
}
- ACE_GUARD (ACE_SYNCH_MUTEX, ace_mon, this->recv_count_mutex_);
+ ACE_GUARD (TAO_SYNCH_MUTEX, ace_mon, this->recv_count_mutex_);
this->recv_count_ += events.length ();
diff --git a/TAO/orbsvcs/tests/EC_Custom_Marshal/ECM_Consumer.h b/TAO/orbsvcs/tests/EC_Custom_Marshal/ECM_Consumer.h
index 62b9bdca96f..49f0925df86 100644
--- a/TAO/orbsvcs/tests/EC_Custom_Marshal/ECM_Consumer.h
+++ b/TAO/orbsvcs/tests/EC_Custom_Marshal/ECM_Consumer.h
@@ -110,7 +110,7 @@ private:
const char* pid_file_name_;
// The name of a file where the process stores its pid
- ACE_SYNCH_MUTEX recv_count_mutex_;
+ TAO_SYNCH_MUTEX recv_count_mutex_;
int recv_count_;
// How many events we have received.
};