git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@680 35acf78f-673a-0410-8e92-d51de3d6d3f4

This commit is contained in:
gdisirio 2009-01-28 19:28:38 +00:00
parent 5282822dfe
commit 2b2282b6ef
1 changed files with 5 additions and 5 deletions

View File

@ -512,17 +512,17 @@
/** @} */ /** @} */
/** /**
* @defgroup CondVars Conditional Variables * @defgroup CondVars Condition Variables
* @{ * @{
* Conditional Variables and threads synchronization. * Condition Variables and threads synchronization.
* <h2>Operation mode</h2> * <h2>Operation mode</h2>
* The condition variable is a synchronization object meant to be used inside * The condition variable is a synchronization object meant to be used inside
* a zone protected by a @p Mutex. Mutexes and CondVars together can implement * a zone protected by a @p Mutex. Mutexes and CondVars together can implement
* a Monitor construct.<br> * a Monitor construct.<br>
* In order to use the Conditional Variables APIs the @p CH_USE_CONDVARS * In order to use the Condition Variables APIs the @p CH_USE_CONDVARS
* option must be specified in @p chconf.h.<br><br> * option must be specified in @p chconf.h.<br><br>
* @file condvars.h Conditional Variables macros and structures. * @file condvars.h Condition Variables macros and structures.
* @file chcond.c Conditional Variables code. * @file chcond.c Condition Variables code.
*/ */
/** @} */ /** @} */