aboutsummaryrefslogtreecommitdiffstats
path: root/os/rt/include/chmtx.h
diff options
context:
space:
mode:
Diffstat (limited to 'os/rt/include/chmtx.h')
-rw-r--r--os/rt/include/chmtx.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/os/rt/include/chmtx.h b/os/rt/include/chmtx.h
index 30367a1ab..9a7f2163d 100644
--- a/os/rt/include/chmtx.h
+++ b/os/rt/include/chmtx.h
@@ -136,8 +136,10 @@ 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
*/
-static inline mutex_t *chMtxGetNextMutex(void) {
+static inline mutex_t *chMtxGetNextMutexS(void) {
return chThdGetSelfX()->p_mtxlist;
}