From 3d3e5728aa1d14444b99732426d36f6375013727 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Thu, 16 Oct 2008 20:24:33 +0000 Subject: git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@473 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- src/include/delta.h | 1 + src/include/lists.h | 1 + src/include/mutexes.h | 3 +++ src/include/threads.h | 1 + 4 files changed, 6 insertions(+) (limited to 'src') 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. -- cgit v1.2.3