diff options
Diffstat (limited to 'os/lib/include/chmboxes.h')
-rw-r--r-- | os/lib/include/chmboxes.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/os/lib/include/chmboxes.h b/os/lib/include/chmboxes.h index 65e811e60..eeff68751 100644 --- a/os/lib/include/chmboxes.h +++ b/os/lib/include/chmboxes.h @@ -128,7 +128,7 @@ extern "C" { /**
* @brief Returns the mailbox buffer size as number of messages.
*
- * @param[in] mbp the pointer to an initialized mailbox_t object
+ * @param[in] mbp the pointer to an initialized @p mailbox_t object
* @return The size of the mailbox.
*
* @iclass
@@ -144,7 +144,7 @@ static inline size_t chMBGetSizeI(const mailbox_t *mbp) { /**
* @brief Returns the number of used message slots into a mailbox.
*
- * @param[in] mbp the pointer to an initialized mailbox_t object
+ * @param[in] mbp the pointer to an initialized @p mailbox_t object
* @return The number of queued messages.
*
* @iclass
@@ -159,7 +159,7 @@ static inline size_t chMBGetUsedCountI(const mailbox_t *mbp) { /**
* @brief Returns the number of free message slots into a mailbox.
*
- * @param[in] mbp the pointer to an initialized mailbox_t object
+ * @param[in] mbp the pointer to an initialized @p mailbox_t object
* @return The number of empty message slots.
*
* @iclass
@@ -178,7 +178,7 @@ static inline size_t chMBGetFreeCountI(const mailbox_t *mbp) { * to use @p chMBGetFullCountI() and then use this macro, all within
* a lock state.
*
- * @param[in] mbp the pointer to an initialized mailbox_t object
+ * @param[in] mbp the pointer to an initialized @p mailbox_t object
* @return The next message in queue.
*
* @iclass
@@ -193,7 +193,7 @@ static inline msg_t chMBPeekI(const mailbox_t *mbp) { /**
* @brief Terminates the reset state.
*
- * @param[in] mbp the pointer to an initialized mailbox_t object
+ * @param[in] mbp the pointer to an initialized @p mailbox_t object
*
* @xclass
*/
|