blob: bc9951f84e04cdf55ba6d9af5d8120597f820a60 (
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
45
46
|
// $Id$
#define ACE_BUILD_SVC_DLL
#include "ace/Synch.h"
#include "Options.h"
#include "Benchmark_Performance.h"
ACE_RCSID(Synch_Benchmarks, mutex_test, "$Id$")
#if defined (ACE_HAS_THREADS)
class ACE_Svc_Export Mutex_Test : public Benchmark_Performance
{
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 */
|