diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 2001-03-06 03:45:10 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 2001-03-06 03:45:10 +0000 |
commit | 9e95ec747bd5526ae9801a58d2b3f668eb215687 (patch) | |
tree | 276482e82f5ee5a3985961afc8244b3120797e9c /ace/Synch_T.h | |
parent | 808e592e4d32b9d872ef31a315dbdc7ac619e85d (diff) | |
download | ATCD-9e95ec747bd5526ae9801a58d2b3f668eb215687.tar.gz |
ChangeLogTag:Mon Mar 5 13:56:33 2001 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
Diffstat (limited to 'ace/Synch_T.h')
-rw-r--r-- | ace/Synch_T.h | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/ace/Synch_T.h b/ace/Synch_T.h index f70d39bf9e0..821372c4b66 100644 --- a/ace/Synch_T.h +++ b/ace/Synch_T.h @@ -430,13 +430,11 @@ public: /// <tryacquire> it. ACE_Guard (ACE_LOCK &l, int block); - // Implicitly and automatically acquire (or try to acquire) the - /// lock. If <become_owner> is 0 or 1 then initialize the guard without - /// automatically acquiring the lock; this parameter then indicates - /// whether the guard should release the lock implicitly on destruction. - /// If <become_owner> is -1 then the lock is acquired automatically. - /// If <block> is non-0 then <acquire> the <ACE_LOCK>, else - /// <tryacquire> it. + /// Initialise the guard without implicitly acquiring the lock. The + /// <become_owner> parameter indicates whether the guard should release + /// the lock implicitly on destruction. The <block> parameter is + /// ignored and is used here to disambiguate with the preceding + /// constructor. ACE_Guard (ACE_LOCK &l, int block, int become_owner); /// Implicitly release the lock. |