From 7a3da58ae2c6defd58e77bb4a5d3ba7034c642cc Mon Sep 17 00:00:00 2001 From: gdisirio Date: Wed, 12 Feb 2014 13:14:11 +0000 Subject: 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 --- os/rt/include/chmtx.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'os/rt/include') 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 }; -- cgit v1.2.3