aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-05-26 13:08:40 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-05-26 13:08:40 +0000
commit791f412ad66a36fb6dc530149024acb4bcbfaed6 (patch)
treeaffb3772e6bc74ff7bfb39d60b115c4b441cb11f /test
parent6a1582eafebdb1cfb94cf57ecac620b0131631d5 (diff)
downloadChibiOS-791f412ad66a36fb6dc530149024acb4bcbfaed6.tar.gz
ChibiOS-791f412ad66a36fb6dc530149024acb4bcbfaed6.tar.bz2
ChibiOS-791f412ad66a36fb6dc530149024acb4bcbfaed6.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@991 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'test')
-rw-r--r--test/testbmk.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/test/testbmk.c b/test/testbmk.c
index cb6ce9da7..7a99c37af 100644
--- a/test/testbmk.c
+++ b/test/testbmk.c
@@ -209,7 +209,7 @@ const struct testcase testbmk3 = {
* A thread is created that just performs a @p chSchGoSleepS() into a loop,
* the thread is awakened as fast is possible by the tester thread.<br>
* The Context Switch performance is calculated by measuring the number of
- * interactions after a second of continuous operations.
+ * iterations after a second of continuous operations.
*/
static char *bmk4_gettest(void) {
@@ -272,8 +272,8 @@ const struct testcase testbmk4 = {
* <h2>Description</h2>
* Threads are continuously created and terminated into a loop. A full
* @p chThdCreateStatic() / @p chThdExit() / @p chThdWait() cycle is performed
- * in each interaction.<br>
- * The performance is calculated by measuring the number of interactions after
+ * in each iteration.<br>
+ * The performance is calculated by measuring the number of iterations after
* a second of continuous operations.
*/
@@ -314,10 +314,10 @@ const struct testcase testbmk5 = {
* <h2>Description</h2>
* Threads are continuously created and terminated into a loop. A partial
* @p chThdCreateStatic() / @p chThdExit() cycle is performed in each
- * interaction, the @p chThdWait() is not necessary because the thread is
+ * iteration, the @p chThdWait() is not necessary because the thread is
* created at an higher priority so there is no need to wait for it to
* terminate.<br>
- * The performance is calculated by measuring the number of interactions after
+ * The performance is calculated by measuring the number of iterations after
* a second of continuous operations.
*/
@@ -359,7 +359,7 @@ const struct testcase testbmk6 = {
* Five threads are created and atomically reschedulated by resetting the
* semaphore where they are waiting on. The operation is performed into a
* continuous loop.<br>
- * The performance is calculated by measuring the number of interactions after
+ * The performance is calculated by measuring the number of iterations after
* a second of continuous operations.
*/
@@ -423,7 +423,7 @@ const struct testcase testbmk7 = {
* <h2>Description</h2>
* Four bytes are written and then read from an @p InputQueue into a continuous
* loop.<br>
- * The performance is calculated by measuring the number of interactions after
+ * The performance is calculated by measuring the number of iterations after
* a second of continuous operations.
*/
@@ -471,7 +471,7 @@ const struct testcase testbmk8 = {
*
* <h2>Description</h2>
* A virtual timer is set and immediately reset into a continuous loop.<br>
- * The performance is calculated by measuring the number of interactions after
+ * The performance is calculated by measuring the number of iterations after
* a second of continuous operations.
*/
@@ -518,7 +518,7 @@ const struct testcase testbmk9 = {
* <h2>Description</h2>
* A counting semaphore is taken/released into a continuous loop, no Context
* Switch happens because the counter is always non negative.<br>
- * The performance is calculated by measuring the number of interactions after
+ * The performance is calculated by measuring the number of iterations after
* a second of continuous operations.
*/
@@ -570,7 +570,7 @@ const struct testcase testbmk10 = {
* <h2>Description</h2>
* A mutex is locked/unlocked into a continuous loop, no Context Switch happens
* because there are no other threads asking for the mutex.<br>
- * The performance is calculated by measuring the number of interactions after
+ * The performance is calculated by measuring the number of iterations after
* a second of continuous operations.
*/