summaryrefslogtreecommitdiff
path: root/examples/Threads/TSS_Task.h
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-01-06 06:50:37 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-01-06 06:50:37 +0000
commit2f662b966b933653ee11f5b2f58c9be06dd3925f (patch)
treec59f73afa48ded43058e918c7414ac6186302a95 /examples/Threads/TSS_Task.h
parentde8d5cc38b9acbfa8f0f4acf5d7453698876f3b8 (diff)
downloadATCD-2f662b966b933653ee11f5b2f58c9be06dd3925f.tar.gz
This commit was manufactured by cvs2svn to create tag 'ACE_4_4_32'.ACE_4_4_32
Diffstat (limited to 'examples/Threads/TSS_Task.h')
-rw-r--r--examples/Threads/TSS_Task.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/examples/Threads/TSS_Task.h b/examples/Threads/TSS_Task.h
deleted file mode 100644
index fc2b2f7f25c..00000000000
--- a/examples/Threads/TSS_Task.h
+++ /dev/null
@@ -1,37 +0,0 @@
-/* -*- C++ -*- */
-
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// tests
-//
-// = FILENAME
-// TSS_Task.h
-//
-// = AUTHOR
-// Prashant Jain and Doug Schmidt
-//
-// ============================================================================
-
-#include "ace/Synch.h"
-#include "ace/Token.h"
-
-class Test_Task
-{
-public:
-
- Test_Task (void);
- ~Test_Task (void);
-
- int open (void *arg);
-
- static void *svc (void *arg);
-
- static ACE_Atomic_Op<ACE_Token, int> wait_count_;
- static ACE_Atomic_Op<ACE_Token, int> max_count_;
-
-private:
- static ACE_Atomic_Op<ACE_Token, int> count_;
-};