aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2008-10-16 20:24:33 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2008-10-16 20:24:33 +0000
commit3d3e5728aa1d14444b99732426d36f6375013727 (patch)
treefe117dcd82ab71a9d32f0699c042ab5c5817c3a8 /src
parente3974196a3f092878c2ec0d466d0ec412298be6b (diff)
downloadChibiOS-3d3e5728aa1d14444b99732426d36f6375013727.tar.gz
ChibiOS-3d3e5728aa1d14444b99732426d36f6375013727.tar.bz2
ChibiOS-3d3e5728aa1d14444b99732426d36f6375013727.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@473 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'src')
-rw-r--r--src/include/delta.h1
-rw-r--r--src/include/lists.h1
-rw-r--r--src/include/mutexes.h3
-rw-r--r--src/include/threads.h1
4 files changed, 6 insertions, 0 deletions
diff --git a/src/include/delta.h b/src/include/delta.h
index 66f6fcc0a..4d59c1a73 100644
--- a/src/include/delta.h
+++ b/src/include/delta.h
@@ -34,6 +34,7 @@ typedef struct VirtualTimer VirtualTimer;
/**
* Virtual Timer descriptor structure.
+ * @extends DeltaList
*/
struct VirtualTimer {
/** Next timer in the delta list.*/
diff --git a/src/include/lists.h b/src/include/lists.h
index 741648a03..5c3c98093 100644
--- a/src/include/lists.h
+++ b/src/include/lists.h
@@ -33,6 +33,7 @@ typedef struct Thread Thread;
/**
* Generic threads queue header and element.
+ * @extends ThreadsList
*/
typedef struct {
/** First \p Thread in the queue, or \p ThreadQueue when empty. */
diff --git a/src/include/mutexes.h b/src/include/mutexes.h
index dcb2039ff..31797562b 100644
--- a/src/include/mutexes.h
+++ b/src/include/mutexes.h
@@ -29,6 +29,9 @@
typedef struct Mutex Mutex;
+/**
+ * Mutex structure.
+ */
struct Mutex {
/** Queue of the threads sleeping on this Mutex.*/
ThreadsQueue m_queue;
diff --git a/src/include/threads.h b/src/include/threads.h
index 099b8466f..051ca482d 100644
--- a/src/include/threads.h
+++ b/src/include/threads.h
@@ -27,6 +27,7 @@
/**
* Structure representing a thread.
+ * @extends ThreadsQueue
* @note Not all the listed fields are always needed, by switching off some
* not needed ChibiOS/RT subsystems it is possible to save RAM space by
* shrinking the \p Thread structure.