diff options
Diffstat (limited to 'os/rt/include')
-rw-r--r-- | os/rt/include/chmtx.h | 4 |
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;
}
|