summaryrefslogtreecommitdiff
path: root/examples/Threads/TSS_Task.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/Threads/TSS_Task.h')
-rw-r--r--examples/Threads/TSS_Task.h35
1 files changed, 0 insertions, 35 deletions
diff --git a/examples/Threads/TSS_Task.h b/examples/Threads/TSS_Task.h
deleted file mode 100644
index 18a83937227..00000000000
--- a/examples/Threads/TSS_Task.h
+++ /dev/null
@@ -1,35 +0,0 @@
-// $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_;
-};