aboutsummaryrefslogtreecommitdiffstats
path: root/os/nil
diff options
context:
space:
mode:
authorTheodore Ateba <tf.ateba@gmail.com>2018-01-20 22:33:40 +0000
committerTheodore Ateba <tf.ateba@gmail.com>2018-01-20 22:33:40 +0000
commit386f0d66f7aa1df1e62ec3a95f10d6c70693a9a4 (patch)
tree25cf3f51d4ec2d99d277633838f9ffd8cf163465 /os/nil
parentd299c601f7a8f86588eccb0ceab0fc21f2c49b61 (diff)
downloadChibiOS-386f0d66f7aa1df1e62ec3a95f10d6c70693a9a4.tar.gz
ChibiOS-386f0d66f7aa1df1e62ec3a95f10d6c70693a9a4.tar.bz2
ChibiOS-386f0d66f7aa1df1e62ec3a95f10d6c70693a9a4.zip
Clean up the code.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11376 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/nil')
-rw-r--r--os/nil/src/ch.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/os/nil/src/ch.c b/os/nil/src/ch.c
index 2a997e3a8..b9ead4fa8 100644
--- a/os/nil/src/ch.c
+++ b/os/nil/src/ch.c
@@ -621,7 +621,7 @@ void chSchRescheduleS(void) {
* @param[in] timeout the number of ticks before the operation timeouts.
* the following special values are allowed:
* - @a TIME_INFINITE no timeout.
- * .
+ *
* @return The wakeup message.
* @retval NIL_MSG_TMO if a timeout occurred.
*
@@ -703,7 +703,7 @@ msg_t chSchGoSleepTimeoutS(tstate_t newstate, sysinterval_t timeout) {
* @param[in] timeout the number of ticks before the operation timeouts,
* the following special values are allowed:
* - @a TIME_INFINITE no timeout.
- * .
+ *
* @return The wake up message.
*
* @sclass
@@ -781,7 +781,7 @@ void chThdSleepUntil(systime_t abstime) {
* - @a TIME_IMMEDIATE the thread is not enqueued and
* the function returns @p MSG_TIMEOUT as if a timeout
* occurred.
- * .
+ *
* @return The message from @p osalQueueWakeupOneI() or
* @p osalQueueWakeupAllI() functions.
* @retval MSG_TIMEOUT if the thread has not been dequeued within the
@@ -900,7 +900,7 @@ void chThdDequeueAllI(threads_queue_t *tqp, msg_t msg) {
* the following special values are allowed:
* - @a TIME_IMMEDIATE immediate timeout.
* - @a TIME_INFINITE no timeout.
- * .
+ *
* @return A message specifying how the invoking thread has been
* released from the semaphore.
* @retval NIL_MSG_OK if the thread has not stopped on the semaphore or the
@@ -929,7 +929,7 @@ msg_t chSemWaitTimeout(semaphore_t *sp, sysinterval_t timeout) {
* the following special values are allowed:
* - @a TIME_IMMEDIATE immediate timeout.
* - @a TIME_INFINITE no timeout.
- * .
+ *
* @return A message specifying how the invoking thread has been
* released from the semaphore.
* @retval NIL_MSG_OK if the thread has not stopped on the semaphore or the
@@ -1127,7 +1127,7 @@ void chEvtSignalI(thread_t *tp, eventmask_t mask) {
* the following special values are allowed:
* - @a TIME_IMMEDIATE immediate timeout.
* - @a TIME_INFINITE no timeout.
- * .
+ *
* @return The mask of the served and cleared events.
* @retval 0 if the operation has timed out.
*