summaryrefslogtreecommitdiff
path: root/performance-tests/POA/Demux/demux_stats.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'performance-tests/POA/Demux/demux_stats.cpp')
-rw-r--r--performance-tests/POA/Demux/demux_stats.cpp32
1 files changed, 14 insertions, 18 deletions
diff --git a/performance-tests/POA/Demux/demux_stats.cpp b/performance-tests/POA/Demux/demux_stats.cpp
index 46816b75a80..9216900f4a2 100644
--- a/performance-tests/POA/Demux/demux_stats.cpp
+++ b/performance-tests/POA/Demux/demux_stats.cpp
@@ -1,17 +1,13 @@
-// $Id$
-// ============================================================================
-//
-// = LIBRARY
-// TAO/performance-tests/Demux
-//
-// = FILENAME
-// demux_stats.cpp
-//
-// = AUTHOR
-//
-// Vishal Kachroo
-//
-// ============================================================================
+//=============================================================================
+/**
+ * @file demux_stats.cpp
+ *
+ * $Id$
+ *
+ * @author Vishal Kachroo
+ */
+//=============================================================================
+
// FUZZ: disable check_for_math_include
#include <math.h>
@@ -23,19 +19,19 @@ class Demux_Stats
public:
+ /// Calculates the average latency and Standard deviation.
+ /// Expects the input data in my_results.dat.
int
calculate_avg_latency (void);
- // Calculates the average latency and Standard deviation.
- // Expects the input data in my_results.dat.
+ /// parses args.
int
Demux_Stats::parse_args (int argc_, char * argv_ []);
- // parses args.
private :
+ /// temporary results file.
FILE *result_fp_;
- // temporary results file.
int iterations;
};