summaryrefslogtreecommitdiff
path: root/performance-tests/Synch-Benchmarks/Benchmark_Performance.h
blob: aa29840727506c67771ea493d6ab9bde45233127 (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
/* -*- C++ -*- */
// $Id$

/* Defines the class used to dynamically link in the benchmark tests */

#if !defined (ACE_BENCHMARK_PERFORMANCE_H)
#define ACE_BENCHMARK_PERFORMANCE_H

#include "Benchmark_Base.h"

#if defined (ACE_HAS_THREADS)

extern int buffer;
extern ACE_Svc_Export int synch_count;

class ACE_Svc_Export Benchmark_Performance : public Benchmark_Performance_Test_Base
{
  // TITLE
  //   Base class for all the timing tests.
public:
  // = Hooks inherited from ACE_Service_Object.
  virtual int svc (void);
  virtual int init (int, char *[]);
  virtual int info (char **, size_t) const;
  virtual int fini (void);
  static void *svc_run (Benchmark_Performance *bp);

  // = Set/get flag that controls how the tests are shut down
  // gracefully.
  static void done (sig_atomic_t);
  static sig_atomic_t done (void);

protected:
  static sig_atomic_t done_;
  // Keeps track if we are finished or not.
};
#endif /* ACE_HAS_THREADS */
#endif /* ACE_BENCHMARK_PERFORMANCE_H */