summaryrefslogtreecommitdiff
path: root/performance-tests/Synch-Benchmarks/mutex_test.cpp
blob: 2137b05859a4c6135d0f153a789aa6f1afbf8fae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// $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 Mutex_Test : public Benchmark
{
public:
  virtual int svc (void);

private:
  static ACE_Thread_Mutex mutex;
};

ACE_Thread_Mutex Mutex_Test::mutex;

int
Mutex_Test::svc (void)
{
  // Extract out the unique thread-specific value to be used as an
  // index...
  int ni = this->thr_id ();
  synch_count = 2;

  while (!this->done ())
    {
      mutex.acquire ();
      options.thr_work_count[ni]++;
      buffer++;
      mutex.release ();
    }
  /* NOTREACHED */
  return 0;
}

ACE_SVC_FACTORY_DECLARE (Mutex_Test) 
ACE_SVC_FACTORY_DEFINE  (Mutex_Test)

// ACE_Service_Object_Type mut (&mutex_test, "Mutex_Test");
#endif /* ACE_HAS_THREADS */