diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/include/delta.h | 1 | ||||
-rw-r--r-- | src/include/lists.h | 1 | ||||
-rw-r--r-- | src/include/mutexes.h | 3 | ||||
-rw-r--r-- | src/include/threads.h | 1 |
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. |