diff options
Diffstat (limited to 'os/rt/include/chmtx.h')
-rw-r--r-- | os/rt/include/chmtx.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/os/rt/include/chmtx.h b/os/rt/include/chmtx.h index 5f7793bdc..44e9ea42c 100644 --- a/os/rt/include/chmtx.h +++ b/os/rt/include/chmtx.h @@ -139,9 +139,9 @@ static inline bool chMtxQueueNotEmptyS(mutex_t *mp) { * @return A pointer to the next mutex in the stack.
* @retval NULL if the stack is empty.
*
- * @sclass
+ * @xclass
*/
-static inline mutex_t *chMtxGetNextMutexS(void) {
+static inline mutex_t *chMtxGetNextMutexX(void) {
return chThdGetSelfX()->mtxlist;
}
|