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

This commit is contained in:
gdisirio 2015-01-05 13:27:55 +00:00
parent 9e20f4acd6
commit c5c9353f2e
6 changed files with 0 additions and 10 deletions

View File

@ -149,11 +149,6 @@
* @ingroup streams
*/
/**
* @defgroup data_files Abstract File Streams
* @ingroup streams
*/
/**
* @defgroup registry Registry
* @ingroup kernel

View File

@ -24,7 +24,6 @@
*
* @addtogroup binary_semaphores
* @details Binary semaphores related APIs and services.
*
* <h2>Operation mode</h2>
* Binary semaphores are implemented as a set of inline functions
* that use the existing counting semaphores primitives. The

View File

@ -24,7 +24,6 @@
*
* @addtogroup mutexes
* @details Mutexes related APIs and services.
*
* <h2>Operation mode</h2>
* A mutex is a threads synchronization object that can be in two
* distinct states:

View File

@ -24,7 +24,6 @@
*
* @addtogroup registry
* @details Threads Registry related APIs and services.
*
* <h2>Operation mode</h2>
* The Threads Registry is a double linked list that holds all the
* active threads in the system.<br>

View File

@ -24,7 +24,6 @@
*
* @addtogroup semaphores
* @details Semaphores related APIs and services.
*
* <h2>Operation mode</h2>
* Semaphores are a flexible synchronization primitive, ChibiOS/RT
* implements semaphores in their "counting semaphores" variant as

View File

@ -24,7 +24,6 @@
*
* @addtogroup threads
* @details Threads related APIs and services.
*
* <h2>Operation mode</h2>
* A thread is an abstraction of an independent instructions flow.
* In ChibiOS/RT a thread is represented by a "C" function owning