summaryrefslogtreecommitdiff
path: root/performance-tests/Synch-Benchmarks/context_test.cpp
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-04-12 01:02:34 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-04-12 01:02:34 +0000
commit2996933cc12d5493d68fad3873a45c3aabba3e18 (patch)
treeeca5b8bdef0a38fe4736df3c33f73da99ab487bb /performance-tests/Synch-Benchmarks/context_test.cpp
parent55c07b3e66734053a180f1d0ebb644ea6fa3c3bf (diff)
downloadATCD-Current.tar.gz
This commit was manufactured by cvs2svn to create tag 'Current'.Current
Diffstat (limited to 'performance-tests/Synch-Benchmarks/context_test.cpp')
-rw-r--r--performance-tests/Synch-Benchmarks/context_test.cpp37
1 files changed, 0 insertions, 37 deletions
diff --git a/performance-tests/Synch-Benchmarks/context_test.cpp b/performance-tests/Synch-Benchmarks/context_test.cpp
deleted file mode 100644
index 3c348acda6b..00000000000
--- a/performance-tests/Synch-Benchmarks/context_test.cpp
+++ /dev/null
@@ -1,37 +0,0 @@
-// $Id$
-
-#define ACE_BUILD_SVC_DLL
-#include "ace/Synch.h"
-#include "Options.h"
-#include "Benchmark.h"
-
-#if defined (ACE_HAS_THREADS)
-
-class ACE_Svc_Export Context_Test : public Benchmark
-{
-public:
- virtual int svc (void);
-};
-
-int
-Context_Test::svc (void)
-{
- int ni = this->thr_id ();
-
- synch_count = 1;
-
- while (!this->done ())
- {
- ACE_Thread::yield ();
- options.thr_work_count[ni]++;
- }
-
- /* NOTREACHED */
- return 0;
-}
-
-ACE_SVC_FACTORY_DECLARE (Context_Test)
-ACE_SVC_FACTORY_DEFINE (Context_Test)
-
-// ACE_Service_Object_Type ct (&context_test, "Context_Test");
-#endif /* ACE_HAS_THREADS */