aboutsummaryrefslogtreecommitdiffstats
path: root/os/kernel/include/chmtx.h
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-08-23 10:09:08 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-08-23 10:09:08 +0000
commitc9be79def630f153b0b2d28e905939c15743f989 (patch)
treed88d60cde858f1efff1bdd5fb1f201ba69f286cc /os/kernel/include/chmtx.h
parent2d55ac3059fcca69cc9736db310b4521064c2b23 (diff)
downloadChibiOS-c9be79def630f153b0b2d28e905939c15743f989.tar.gz
ChibiOS-c9be79def630f153b0b2d28e905939c15743f989.tar.bz2
ChibiOS-c9be79def630f153b0b2d28e905939c15743f989.zip
Kernel documentation fixes and improvements.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@3251 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/kernel/include/chmtx.h')
-rw-r--r--os/kernel/include/chmtx.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/os/kernel/include/chmtx.h b/os/kernel/include/chmtx.h
index 9f2d5a0d3..831d48a89 100644
--- a/os/kernel/include/chmtx.h
+++ b/os/kernel/include/chmtx.h
@@ -77,12 +77,17 @@ extern "C" {
#define MUTEX_DECL(name) Mutex name = _MUTEX_DATA(name)
/**
+ * @name Macro Functions
+ * @{
+ */
+/**
* @brief Returns @p TRUE if the mutex queue contains at least a waiting
* thread.
*
* @sclass
*/
#define chMtxQueueNotEmptyS(mp) notempty(&(mp)->m_queue)
+/** @} */
#endif /* CH_USE_MUTEXES */