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

This commit is contained in:
gdisirio 2008-07-26 09:46:43 +00:00
parent 69f9642bf4
commit 6ae1a6c882
14 changed files with 57 additions and 2 deletions

View File

@ -75,6 +75,10 @@
* APIs are included in the kernel.*/
#define CH_USE_SEMSW
/** Configuration option: if specified then the Conditional Variables APIs are
* included in the kernel.*/
#define CH_USE_CONDVARS
/** Configuration option: if specified then the Semaphores with timeout APIs
* are included in the kernel.
* @note requires \p CH_USE_SEMAPHORES.

View File

@ -75,6 +75,10 @@
* APIs are included in the kernel.*/
#define CH_USE_SEMSW
/** Configuration option: if specified then the Conditional Variables APIs are
* included in the kernel.*/
#define CH_USE_CONDVARS
/** Configuration option: if specified then the Semaphores with timeout APIs
* are included in the kernel.
* @note requires \p CH_USE_SEMAPHORES.

View File

@ -75,6 +75,10 @@
* APIs are included in the kernel.*/
#define CH_USE_SEMSW
/** Configuration option: if specified then the Conditional Variables APIs are
* included in the kernel.*/
#define CH_USE_CONDVARS
/** Configuration option: if specified then the Semaphores with timeout APIs
* are included in the kernel.
* @note requires \p CH_USE_SEMAPHORES.

View File

@ -75,6 +75,10 @@
* APIs are included in the kernel.*/
//#define CH_USE_SEMSW
/** Configuration option: if specified then the Conditional Variables APIs are
* included in the kernel.*/
//#define CH_USE_CONDVARS
/** Configuration option: if specified then the Semaphores with timeout APIs
* are included in the kernel.
* @note requires \p CH_USE_SEMAPHORES.

View File

@ -75,6 +75,8 @@
* APIs are included in the kernel.*/
#define CH_USE_SEMSW
/** Configuration option: if specified then the Conditional Variables APIs are
* included in the kernel.*/
#define CH_USE_CONDVARS
/** Configuration option: if specified then the Semaphores with timeout APIs

View File

@ -75,6 +75,10 @@
* APIs are included in the kernel.*/
#define CH_USE_SEMSW
/** Configuration option: if specified then the Conditional Variables APIs are
* included in the kernel.*/
#define CH_USE_CONDVARS
/** Configuration option: if specified then the Semaphores with timeout APIs
* are included in the kernel.
* @note requires \p CH_USE_SEMAPHORES.

View File

@ -75,6 +75,10 @@
* APIs are included in the kernel.*/
#define CH_USE_SEMSW
/** Configuration option: if specified then the Conditional Variables APIs are
* included in the kernel.*/
#define CH_USE_CONDVARS
/** Configuration option: if specified then the Semaphores with timeout APIs
* are included in the kernel.
* @note requires \p CH_USE_SEMAPHORES.

View File

@ -75,6 +75,10 @@
* APIs are included in the kernel.*/
#define CH_USE_SEMSW
/** Configuration option: if specified then the Conditional Variables APIs are
* included in the kernel.*/
#define CH_USE_CONDVARS
/** Configuration option: if specified then the Semaphores with timeout APIs
* are included in the kernel.
* @note requires \p CH_USE_SEMAPHORES.

View File

@ -76,6 +76,10 @@
* APIs are included in the kernel.*/
#define CH_USE_SEMSW
/** Configuration option: if specified then the Conditional Variables APIs are
* included in the kernel.*/
#define CH_USE_CONDVARS
/** Configuration option: if specified then the Semaphores with timeout APIs
* are included in the kernel.
* @note requires \p CH_USE_SEMAPHORES.

View File

@ -80,6 +80,10 @@
* APIs are included in the kernel.*/
#define CH_USE_SEMSW
/** Configuration option: if specified then the Conditional Variables APIs are
* included in the kernel.*/
#define CH_USE_CONDVARS
/** Configuration option: if specified then the Semaphores with timeout APIs
* are included in the kernel.
* @note requires \p CH_USE_SEMAPHORES.

View File

@ -372,6 +372,19 @@
*/
/** @} */
/**
* @defgroup CondVars Conditional Variables
* @{
* Conditional Variables and threads synchronization.
* <b>Operation mode</b><br><br>
* Add description here.<br>
* In order to use the Conditional Variables APIs the \p CH_USE_CONDVARS
* option must be specified in \p chconf.h.<br><br>
* @file condvars.h Conditional Variables macros and structures.
* @file chcond.c Conditional Variables code.
*/
/** @} */
/**
* @defgroup Mutexes Mutexes
* @{

View File

@ -18,7 +18,7 @@
*/
/**
* @addtogroup Condition Variables
* @addtogroup CondVars
* @{
*/

View File

@ -18,7 +18,7 @@
*/
/**
* @addtogroup Conditional Variables
* @addtogroup CondVars
* @{
*/

View File

@ -76,6 +76,10 @@
* APIs are included in the kernel.*/
#define CH_USE_SEMSW
/** Configuration option: if specified then the Conditional Variables APIs are
* included in the kernel.*/
#define CH_USE_CONDVARS
/** Configuration option: if specified then the Semaphores with timeout APIs
* are included in the kernel.
* @note requires \p CH_USE_SEMAPHORES.