summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNgesBrian <nges.brian@gmail.com>2016-07-28 03:49:42 +0100
committerMarko Kiiskila <marko@runtime.io>2016-08-18 09:20:59 -0700
commiteacd9681ba0d577fac2c30a9a68fd73436c937d5 (patch)
tree9ef56cbf8769ca9e126114b71764aba1aff24eb7
parent3946efd7979a370e7ad016aad9067ff71c6a8d9d (diff)
correction of comments
-rw-r--r--libs/os/src/test/callout_test.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libs/os/src/test/callout_test.c b/libs/os/src/test/callout_test.c
index 27241dd1..f239db76 100644
--- a/libs/os/src/test/callout_test.c
+++ b/libs/os/src/test/callout_test.c
@@ -55,15 +55,15 @@ void
callout_task_send()
{
- /* should say whether os is armed or not */
+ /* should say whether callout is armed or not */
i = os_callout_queued(&callout_func_test.cf_c);
TEST_ASSERT(i == 0);
- /* Arm the OS */
+ /* Arm the callout */
i = os_callout_reset(&callout_func_test.cf_c, OS_TICKS_PER_SEC/ 50);
TEST_ASSERT_FATAL(i == 0);
- /* should say whether os is armed or not */
+ /* should say whether callout is armed or not */
i = os_callout_queued(&callout_func_test.cf_c);
TEST_ASSERT(i == 1);
@@ -81,7 +81,7 @@ callout_task_receive(void *arg)
TEST_ASSERT(event->ev_arg == NULL);
TEST_ASSERT(i == 1);
- /* should say whether os is armed or not */
+ /* should say whether callout is armed or not */
i = os_callout_queued(&callout_func_test.cf_c);
TEST_ASSERT(i == 0);