aboutsummaryrefslogtreecommitdiffstats
path: root/os/rt/include
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2014-02-12 13:48:38 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2014-02-12 13:48:38 +0000
commitc3f2655db931f2a166a3a5d9b8ba4f2be184522e (patch)
tree29a8b580567fe0ad83c59f29d3cb3ee7f8653373 /os/rt/include
parent7a3da58ae2c6defd58e77bb4a5d3ba7034c642cc (diff)
downloadChibiOS-c3f2655db931f2a166a3a5d9b8ba4f2be184522e.tar.gz
ChibiOS-c3f2655db931f2a166a3a5d9b8ba4f2be184522e.tar.bz2
ChibiOS-c3f2655db931f2a166a3a5d9b8ba4f2be184522e.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/kernel_3_dev@6708 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/rt/include')
-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;
}