You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by we...@apache.org on 2017/03/24 23:15:54 UTC

[32/50] [abbrv] incubator-mynewt-core git commit: No Ticket - correct os_sem_init() comment

No Ticket - correct os_sem_init() comment


Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/commit/b5e0947a
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/tree/b5e0947a
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/diff/b5e0947a

Branch: refs/heads/nrf_cputime
Commit: b5e0947a0bc368cb8ac6adf7e10801e09fdfa17d
Parents: c93c7be
Author: Vipul Rahane <vi...@apache.org>
Authored: Sun Mar 19 22:42:16 2017 -0700
Committer: Vipul Rahane <vi...@apache.org>
Committed: Tue Mar 21 11:45:21 2017 -0700

----------------------------------------------------------------------
 kernel/os/src/os_sem.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/b5e0947a/kernel/os/src/os_sem.c
----------------------------------------------------------------------
diff --git a/kernel/os/src/os_sem.c b/kernel/os/src/os_sem.c
index d347a61..02fecbf 100644
--- a/kernel/os/src/os_sem.c
+++ b/kernel/os/src/os_sem.c
@@ -35,9 +35,9 @@
  */
 
 /**
- * os sem create
+ * os sem initialize
  *
- * Create a semaphore and initialize it.
+ * Initialize a semaphore
  *
  * @param sem Pointer to semaphore
  *        tokens: # of tokens the semaphore should contain initially.