summaryrefslogtreecommitdiff
path: root/ace/Basic_Stats.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2002-09-25 18:00:04 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2002-09-25 18:00:04 +0000
commit7ce70916842c86a4f4b3b25e0f9ec4a0b20bd22c (patch)
treeaef22d223144fc95e7fab9734d1195b90759ce5f /ace/Basic_Stats.h
parentf4d16d446e6420ecb80ccd45143ad6c9bc57ceae (diff)
downloadATCD-7ce70916842c86a4f4b3b25e0f9ec4a0b20bd22c.tar.gz
ChangeLogTag: Wed Sep 25 17:57:45 UTC 2002 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ace/Basic_Stats.h')
-rw-r--r--ace/Basic_Stats.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ace/Basic_Stats.h b/ace/Basic_Stats.h
index 722c92ae355..bc927a271fd 100644
--- a/ace/Basic_Stats.h
+++ b/ace/Basic_Stats.h
@@ -43,13 +43,13 @@ public:
/// Record one sample.
void sample (ACE_UINT64 value);
- /// Update the values to reflect the stats in @param rhs
+ /// Update the values to reflect the stats in @a rhs.
void accumulate (const ACE_Basic_Stats &rhs);
/// Dump all the samples
/**
* Prints out the results, using @param msg as a prefix for each
- * message and scaling all the numbers by @param scale_factor.
+ * message and scaling all the numbers by @a scale_factor.
* The latter is useful because high resolution timer samples are
* acquired in clock ticks, but often presented in microseconds.
*/
@@ -74,7 +74,7 @@ private:
/// The sum of all the values
ACE_UINT64 sum_;
-
+
/// The sum of the square of all the values
ACE_UINT64 sum2_;
};