aboutsummaryrefslogtreecommitdiffstats
path: root/src/include/mutexes.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/mutexes.h')
-rw-r--r--src/include/mutexes.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/include/mutexes.h b/src/include/mutexes.h
index 2040d64eb..5c313e526 100644
--- a/src/include/mutexes.h
+++ b/src/include/mutexes.h
@@ -31,12 +31,12 @@
* @brief Mutex structure.
*/
typedef struct Mutex {
- /** Queue of the threads sleeping on this Mutex.*/
- ThreadsQueue m_queue;
- /** Owner @p Thread pointer or @p NULL.*/
- Thread *m_owner;
- /** Next @p Mutex into an owner-list, @p NULL if none.*/
- struct Mutex *m_next;
+ ThreadsQueue m_queue; /**< Queue of the threads sleeping on
+ this Mutex.*/
+ Thread *m_owner; /**< Owner @p Thread pointer or
+ @p NULL.*/
+ struct Mutex *m_next; /**< Next @p Mutex into an owner-list
+ or @p NULL.*/
} Mutex;
#ifdef __cplusplus