diff options
author | gdisirio <gdisirio@110e8d01-0319-4d1e-a829-52ad28d1bb01> | 2018-03-19 12:30:31 +0000 |
---|---|---|
committer | gdisirio <gdisirio@110e8d01-0319-4d1e-a829-52ad28d1bb01> | 2018-03-19 12:30:31 +0000 |
commit | badec871127cc434bdb83a54c2a4d7dde26b073f (patch) | |
tree | 1c3f92081318404c462f7ea9a973f371ed350827 /os/lib/src/chmboxes.c | |
parent | 1c764b208a856d81eb10aaa9edf2ae04d2245ea9 (diff) | |
download | ChibiOS-badec871127cc434bdb83a54c2a4d7dde26b073f.tar.gz ChibiOS-badec871127cc434bdb83a54c2a4d7dde26b073f.tar.bz2 ChibiOS-badec871127cc434bdb83a54c2a4d7dde26b073f.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11823 110e8d01-0319-4d1e-a829-52ad28d1bb01
Diffstat (limited to 'os/lib/src/chmboxes.c')
-rw-r--r-- | os/lib/src/chmboxes.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/os/lib/src/chmboxes.c b/os/lib/src/chmboxes.c index af10c6d7e..b0ca43877 100644 --- a/os/lib/src/chmboxes.c +++ b/os/lib/src/chmboxes.c @@ -103,7 +103,7 @@ void chMBObjectInit(mailbox_t *mbp, msg_t *buf, size_t n) { * @details All the waiting threads are resumed with status @p MSG_RESET and
* the queued messages are lost.
* @post The mailbox is in reset state, all operations will fail and
- * return @p MSG reset until the mailbox is enabled again using
+ * return @p MSG_RESET until the mailbox is enabled again using
* @p chMBResumeX().
*
* @param[in] mbp the pointer to an initialized @p mailbox_t object
@@ -123,7 +123,7 @@ void chMBReset(mailbox_t *mbp) { * @details All the waiting threads are resumed with status @p MSG_RESET and
* the queued messages are lost.
* @post The mailbox is in reset state, all operations will fail and
- * return @p MSG reset until the mailbox is enabled again using
+ * return @p MSG_RESET until the mailbox is enabled again using
* @p chMBResumeX().
*
* @param[in] mbp the pointer to an initialized @p mailbox_t object
|