aboutsummaryrefslogtreecommitdiffstats
path: root/os/rt/include/chmtx.h
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2014-02-12 13:14:11 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2014-02-12 13:14:11 +0000
commit7a3da58ae2c6defd58e77bb4a5d3ba7034c642cc (patch)
tree3a7ff3717a22b6e0ecc470a9cf3b429e56e746a8 /os/rt/include/chmtx.h
parent6c90d27a46cfeb8970eec2cf9d41729202d0e40b (diff)
downloadChibiOS-7a3da58ae2c6defd58e77bb4a5d3ba7034c642cc.tar.gz
ChibiOS-7a3da58ae2c6defd58e77bb4a5d3ba7034c642cc.tar.bz2
ChibiOS-7a3da58ae2c6defd58e77bb4a5d3ba7034c642cc.zip
Recursive mutexes, test code not done yet.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/kernel_3_dev@6707 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/rt/include/chmtx.h')
-rw-r--r--os/rt/include/chmtx.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/os/rt/include/chmtx.h b/os/rt/include/chmtx.h
index a85fb84e7..30367a1ab 100644
--- a/os/rt/include/chmtx.h
+++ b/os/rt/include/chmtx.h
@@ -63,7 +63,7 @@ struct mutex {
mutex_t *m_next; /**< @brief Next @p mutex_t into an
owner-list or @p NULL. */
#if CH_CFG_USE_MUTEXES_RECURSIVE || defined(__DOXYGEN__)
- cnt_t m_taken; /**< @brief Mutex recursion counter. */
+ cnt_t m_cnt; /**< @brief Mutex recursion counter. */
#endif
};