summaryrefslogtreecommitdiff
path: root/ACE/performance-tests/Synch-Benchmarks/Base_Test/mutex_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/performance-tests/Synch-Benchmarks/Base_Test/mutex_test.cpp')
-rw-r--r--ACE/performance-tests/Synch-Benchmarks/Base_Test/mutex_test.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/ACE/performance-tests/Synch-Benchmarks/Base_Test/mutex_test.cpp b/ACE/performance-tests/Synch-Benchmarks/Base_Test/mutex_test.cpp
index 162f60943f6..f1da0dbed3a 100644
--- a/ACE/performance-tests/Synch-Benchmarks/Base_Test/mutex_test.cpp
+++ b/ACE/performance-tests/Synch-Benchmarks/Base_Test/mutex_test.cpp
@@ -23,6 +23,9 @@ template<class LOCK>
class ACE_Svc_Export Baseline_Lock_Test : public Baseline_Test_Base
{
public:
+ Baseline_Lock_Test ();
+ virtual ~Baseline_Lock_Test ();
+
virtual int acquire ();
virtual int release ();
// These two method are used to test try_acquire performance.
@@ -36,6 +39,16 @@ private:
//
};
+template<class LOCK>
+Baseline_Lock_Test<LOCK>::Baseline_Lock_Test ()
+{
+}
+
+template<class LOCK>
+Baseline_Lock_Test<LOCK>::~Baseline_Lock_Test ()
+{
+}
+
template<class LOCK> int
Baseline_Lock_Test<LOCK>::acquire ()
{