diff options
Diffstat (limited to 'os/lib/include')
-rw-r--r-- | os/lib/include/chbsem.h | 2 | ||||
-rw-r--r-- | os/lib/include/chmboxes.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/os/lib/include/chbsem.h b/os/lib/include/chbsem.h index 64b597641..77ca30c25 100644 --- a/os/lib/include/chbsem.h +++ b/os/lib/include/chbsem.h @@ -297,7 +297,7 @@ static inline void chBSemSignal(binary_semaphore_t *bsp) { *
* @iclass
*/
-static inline bool chBSemGetStateI(binary_semaphore_t *bsp) {
+static inline bool chBSemGetStateI(const binary_semaphore_t *bsp) {
chDbgCheckClassI();
diff --git a/os/lib/include/chmboxes.h b/os/lib/include/chmboxes.h index eeff68751..899a8ce1e 100644 --- a/os/lib/include/chmboxes.h +++ b/os/lib/include/chmboxes.h @@ -175,7 +175,7 @@ static inline size_t chMBGetFreeCountI(const mailbox_t *mbp) { * @brief Returns the next message in the queue without removing it.
* @pre A message must be waiting in the queue for this function to work
* or it would return garbage. The correct way to use this macro is
- * to use @p chMBGetFullCountI() and then use this macro, all within
+ * to use @p chMBGetUsedCountI() and then use this macro, all within
* a lock state.
*
* @param[in] mbp the pointer to an initialized @p mailbox_t object
|