git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@680 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
5282822dfe
commit
2b2282b6ef
10
docs/ch.txt
10
docs/ch.txt
|
@ -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.
|
||||||
*/
|
*/
|
||||||
/** @} */
|
/** @} */
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue