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.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_;
-};