summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1999-02-21 17:07:03 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1999-02-21 17:07:03 +0000
commit9454295951b2832d975624d78c1ad9439df1b660 (patch)
tree63041be982a331a363f50687807b16d7ff104452
parent43e335e8e55c12dced0ee5f7b49cfb362dc06745 (diff)
downloadATCD-9454295951b2832d975624d78c1ad9439df1b660.tar.gz
.
-rw-r--r--docs/tutorials/017/Barrier_i.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/tutorials/017/Barrier_i.h b/docs/tutorials/017/Barrier_i.h
index 2177bd62576..8f96ac66e0f 100644
--- a/docs/tutorials/017/Barrier_i.h
+++ b/docs/tutorials/017/Barrier_i.h
@@ -6,10 +6,10 @@
#include "ace/Synch.h"
/* Barrier is a simple wrapper for the ACE_Barrier synchronization
- class. The ACE_Barrier is already pretty easy to use but I thought
+ class. The ACE_Barrier is already pretty easy to use but I thought
I'd wrap it up to create just a bit more abstraction at the
- application level.
- */
+ application level. */
+
class Barrier
{
public:
@@ -41,7 +41,7 @@ public:
protected:
// The number of threads we're synching
- ACE_Atomic_Op<ACE_Mutex,u_int> threads_;
+ ACE_Atomic_Op<ACE_Mutex, u_int> threads_;
// The ACE_Barrier that does all of the work
ACE_Barrier *barrier_;