Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git] / ACE / apps / JAWS / stress_testing / stats.h
blob39f719c4cec54245084c1893d6836fb334af2e35
1 #include "global.h"
3 #ifndef _D_Stats
4 #define _D_Stats
6 #define THREAD_START 42
7 #define THREAD_END 43
9 class Init_Fini_t {
10 public:
11 int type; // 0 is start, 1 is end
12 ACE_Time_Value timestamp;
15 class Stats {
16 public:
17 Stats(int);
18 void log(int, float, float);
19 void i_have_started(int);
20 void i_am_done(int);
21 void print (char *);
22 void output();
23 private:
24 float *throughput_;
25 float *latency_;
26 Init_Fini_t *init_fini_; // Array (2n deep) to count peak no. of active threads
27 int thread_count_;
29 #endif