aboutsummaryrefslogtreecommitdiffstats
path: root/os/nil
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2019-01-20 15:28:28 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2019-01-20 15:28:28 +0000
commite15fc5236be4f5b091ba3a946acaad5dda1d7904 (patch)
tree2af911cb06ddd099cc6eb9d6daa3f221ece2e32a /os/nil
parentc14f479548ba23f4316ca59243d1cd9be5aa9b2a (diff)
downloadChibiOS-e15fc5236be4f5b091ba3a946acaad5dda1d7904.tar.gz
ChibiOS-e15fc5236be4f5b091ba3a946acaad5dda1d7904.tar.bz2
ChibiOS-e15fc5236be4f5b091ba3a946acaad5dda1d7904.zip
Documentation fixes.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@12566 110e8d01-0319-4d1e-a829-52ad28d1bb01
Diffstat (limited to 'os/nil')
-rw-r--r--os/nil/src/ch.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/os/nil/src/ch.c b/os/nil/src/ch.c
index fcabcfdb7..0777c3d10 100644
--- a/os/nil/src/ch.c
+++ b/os/nil/src/ch.c
@@ -55,6 +55,7 @@ nil_system_t nil;
*
* @param[in] state thread state
* @param[in] p object pointer
+ * @return Pointer to the thread.
*/
static thread_t *nil_find_thread(tstate_t state, void * p) {
thread_t *tp = nil.threads;
@@ -79,8 +80,7 @@ static thread_t *nil_find_thread(tstate_t state, void * p) {
* @param[in] cnt number of threads to be readied as a negative number,
* non negative numbers are ignored
* @param[in] msg the wakeup message
- *
- * @iclass
+ * @return Always zero.
*/
static cnt_t nil_ready_all(void * p, cnt_t cnt, msg_t msg) {
thread_t *tp = nil.threads;;