summaryrefslogtreecommitdiff
path: root/ace/Synch_T.h
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1999-01-14 18:03:26 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1999-01-14 18:03:26 +0000
commit5f5c7d5c298bc9e9ecf9d2ad993f7a8cda3480c0 (patch)
tree56fb6dbc34ae3cca771b53356cb6e478ab042a8a /ace/Synch_T.h
parent27af6e0da856f6590af621738346217fd91f0b6a (diff)
downloadATCD-5f5c7d5c298bc9e9ecf9d2ad993f7a8cda3480c0.tar.gz
.
Diffstat (limited to 'ace/Synch_T.h')
-rw-r--r--ace/Synch_T.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/ace/Synch_T.h b/ace/Synch_T.h
index 002315fb069..85bc500ab04 100644
--- a/ace/Synch_T.h
+++ b/ace/Synch_T.h
@@ -732,6 +732,7 @@ class ACE_Condition
// ACE_Condition variable wrapper, which allows threads to block
// until shared data changes state.
//
+ // = DESCRIPTION
// A condition variable enables threads to atomically block and
// test the condition under the protection of a mutual exclu-
// sion lock (mutex) until the condition is satisfied. That is,
@@ -744,6 +745,8 @@ class ACE_Condition
// variable. The waiting threads, upon awakening, reacquire the
// mutex and re-evaluate the condition.
//
+ // Note, you can only parameterize <ACE_Condition> with
+ // <ACE_Thread_Mutex> or <ACE_Null_Mutex>.
public:
// = Initialiation and termination methods.
ACE_Condition (MUTEX &m, int type = USYNC_THREAD,