diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1996-11-26 09:39:26 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1996-11-26 09:39:26 +0000 |
commit | 0b71cc558acde58716c2a97ed347e34b5ab858f3 (patch) | |
tree | 181a2e9edcb2dd8c227a19ab56ec067f7933d675 /ace/Synch_T.cpp | |
parent | fb17b6b4651bacab32beded7b2e54402288ad5f6 (diff) | |
download | ATCD-0b71cc558acde58716c2a97ed347e34b5ab858f3.tar.gz |
eee
Diffstat (limited to 'ace/Synch_T.cpp')
-rw-r--r-- | ace/Synch_T.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/Synch_T.cpp b/ace/Synch_T.cpp index fd89d2e26d5..6b7ff67dafe 100644 --- a/ace/Synch_T.cpp +++ b/ace/Synch_T.cpp @@ -310,7 +310,7 @@ ACE_TSS<TYPE>::ts_get (void) const if (this->once_ == 0) { // Insure that we are serialized! - ACE_GUARD_RETURN (ACE_Mutex, ace_mon_2, (ACE_Mutex &) this->keylock_, 0); + ACE_GUARD_RETURN (ACE_Thread_Mutex, ace_mon, (ACE_Thread_Mutex &) this->keylock_, 0); // Use the Double-Check pattern to make sure we only create the // key once! |