summaryrefslogtreecommitdiff
path: root/TAO/tests/Cubit/TAO/MT_Cubit/Util_Thread.h
blob: e5dcb9da70ffa2517aaa1014bad62ef410aa5590 (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
// $Id$

// ============================================================================
//
// = LIBRARY
//    TAO/tests
//
// = FILENAME
//    Util_Thread.h
//
// = AUTHOR
//    Andy Gokhale, Sumedh Mungee and Sergio Flores-Gaitan
//
// ============================================================================

#include "Task_Client.h"

#define CUBIT_ARBIT_NUMBER 2064885

class Util_Thread : public ACE_Task<ACE_MT_SYNCH>
  // = TITLE
  //     The thread that computes utilization
{
public:
  Util_Thread (Task_State *, ACE_Thread_Manager *thr_mgr);
  // constructor

  virtual int svc (void);
  // the thread function

  double get_number_of_computations (void);
  // gets the number of computations the thread was able
  // to perform

  int done_;
  // Indicates whether its done.

private:

  int run_computations ();
  // run the computations

  double number_of_computations_;
  Task_State *ts_;
};