diff options
Diffstat (limited to 'os')
-rw-r--r-- | os/kernel/include/chbsem.h | 4 | ||||
-rw-r--r-- | os/kernel/include/chmboxes.h | 2 | ||||
-rw-r--r-- | os/kernel/include/chsys.h | 2 | ||||
-rw-r--r-- | os/kernel/src/chsys.c | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/os/kernel/include/chbsem.h b/os/kernel/include/chbsem.h index 5726cd350..e60886bcd 100644 --- a/os/kernel/include/chbsem.h +++ b/os/kernel/include/chbsem.h @@ -55,7 +55,7 @@ /**
* @extends Semaphore
*
- * @brief Binary semaphore type. + * @brief Binary semaphore type.
*/
typedef struct {
Semaphore bs_sem;
@@ -99,7 +99,7 @@ typedef struct { /**
* @brief Wait operation on the binary semaphore.
*
- * @param[in] bsp pointer to a @p BinarySemaphore structure + * @param[in] bsp pointer to a @p BinarySemaphore structure
* @return A message specifying how the invoking thread has been
* released from the semaphore.
* @retval RDY_OK if the binary semaphore has been successfully taken.
diff --git a/os/kernel/include/chmboxes.h b/os/kernel/include/chmboxes.h index 608fcf91e..ce3f238be 100644 --- a/os/kernel/include/chmboxes.h +++ b/os/kernel/include/chmboxes.h @@ -38,7 +38,7 @@ #endif
/**
- * @brief Structure representing a mailbox object. + * @brief Structure representing a mailbox object.
*/
typedef struct {
msg_t *mb_buffer; /**< @brief Pointer to the mailbox
diff --git a/os/kernel/include/chsys.h b/os/kernel/include/chsys.h index 555c59126..944aedc02 100644 --- a/os/kernel/include/chsys.h +++ b/os/kernel/include/chsys.h @@ -34,7 +34,7 @@ * it is not strictly required being the idle thread a static
* object.
*
- * @return Pointer to the idle thread, + * @return Pointer to the idle thread.
*
* @api
*/
diff --git a/os/kernel/src/chsys.c b/os/kernel/src/chsys.c index 9d3ec1929..0051985ba 100644 --- a/os/kernel/src/chsys.c +++ b/os/kernel/src/chsys.c @@ -36,7 +36,7 @@ /**
* @brief Idle thread working area.
- * @see IDLE_THREAD_STACK_SIZE + * @see IDLE_THREAD_STACK_SIZE
*/
WORKING_AREA(_idle_thread_wa, IDLE_THREAD_STACK_SIZE);
|