aboutsummaryrefslogtreecommitdiffstats
path: root/os/kernel/include/chmtx.h
diff options
context:
space:
mode:
Diffstat (limited to 'os/kernel/include/chmtx.h')
-rw-r--r--os/kernel/include/chmtx.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/os/kernel/include/chmtx.h b/os/kernel/include/chmtx.h
index 2d271153a..bc0057e80 100644
--- a/os/kernel/include/chmtx.h
+++ b/os/kernel/include/chmtx.h
@@ -37,7 +37,7 @@
typedef struct Mutex {
threads_queue_t m_queue; /**< @brief Queue of the threads sleeping
on this Mutex. */
- Thread *m_owner; /**< @brief Owner @p Thread pointer or
+ thread_t *m_owner; /**< @brief Owner @p thread_t pointer or
@p NULL. */
struct Mutex *m_next; /**< @brief Next @p Mutex into an
owner-list or @p NULL. */