aboutsummaryrefslogtreecommitdiffstats
path: root/os/rt
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2015-01-05 13:27:55 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2015-01-05 13:27:55 +0000
commitc5c9353f2e69fa0a9245a5020c3f773323673b49 (patch)
tree4c1647dd4fed4058ff4e8eab228290d2c3c0b32a /os/rt
parent9e20f4acd67ee387ab5cf2ad3eba609eea4e0c8c (diff)
downloadChibiOS-c5c9353f2e69fa0a9245a5020c3f773323673b49.tar.gz
ChibiOS-c5c9353f2e69fa0a9245a5020c3f773323673b49.tar.bz2
ChibiOS-c5c9353f2e69fa0a9245a5020c3f773323673b49.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7607 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/rt')
-rw-r--r--os/rt/dox/rt.dox5
-rw-r--r--os/rt/include/chbsem.h1
-rw-r--r--os/rt/src/chmtx.c1
-rw-r--r--os/rt/src/chregistry.c1
-rw-r--r--os/rt/src/chsem.c1
-rw-r--r--os/rt/src/chthreads.c1
6 files changed, 0 insertions, 10 deletions
diff --git a/os/rt/dox/rt.dox b/os/rt/dox/rt.dox
index f7dddd5d3..d609059d9 100644
--- a/os/rt/dox/rt.dox
+++ b/os/rt/dox/rt.dox
@@ -150,11 +150,6 @@
*/
/**
- * @defgroup data_files Abstract File Streams
- * @ingroup streams
- */
-
-/**
* @defgroup registry Registry
* @ingroup kernel
*/
diff --git a/os/rt/include/chbsem.h b/os/rt/include/chbsem.h
index 176a69c57..df20cadb4 100644
--- a/os/rt/include/chbsem.h
+++ b/os/rt/include/chbsem.h
@@ -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
diff --git a/os/rt/src/chmtx.c b/os/rt/src/chmtx.c
index 9099723d6..704fe1640 100644
--- a/os/rt/src/chmtx.c
+++ b/os/rt/src/chmtx.c
@@ -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:
diff --git a/os/rt/src/chregistry.c b/os/rt/src/chregistry.c
index 460226a42..7021bdeac 100644
--- a/os/rt/src/chregistry.c
+++ b/os/rt/src/chregistry.c
@@ -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>
diff --git a/os/rt/src/chsem.c b/os/rt/src/chsem.c
index 4348c3314..3e1cb5aaa 100644
--- a/os/rt/src/chsem.c
+++ b/os/rt/src/chsem.c
@@ -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
diff --git a/os/rt/src/chthreads.c b/os/rt/src/chthreads.c
index 1c9508362..8695c4ee5 100644
--- a/os/rt/src/chthreads.c
+++ b/os/rt/src/chthreads.c
@@ -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