aboutsummaryrefslogtreecommitdiffstats
path: root/os/kernel/include/registry.h
diff options
context:
space:
mode:
Diffstat (limited to 'os/kernel/include/registry.h')
-rw-r--r--os/kernel/include/registry.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/os/kernel/include/registry.h b/os/kernel/include/registry.h
index 0f806fbef..afaf3c5f7 100644
--- a/os/kernel/include/registry.h
+++ b/os/kernel/include/registry.h
@@ -18,8 +18,9 @@
*/
/**
- * @file registry.h
- * @brief Threads registry macros and structures.
+ * @file registry.h
+ * @brief Threads registry macros and structures.
+ *
* @addtogroup registry
* @{
*/
@@ -31,7 +32,9 @@
/**
* @brief Removes a thread from the registry list.
- * @note This macro is not meant for use in application code.
+ * @note This macro is not meant for use in application code.
+ *
+ * @param[in] tp thread to remove from the registry
*/
#define REG_REMOVE(tp) { \
(tp)->p_older->p_newer = (tp)->p_newer; \
@@ -41,6 +44,8 @@
/**
* @brief Adds a thread to the registry list.
* @note This macro is not meant for use in application code.
+ *
+ * @param[in] tp thread to add to the registry
*/
#define REG_INSERT(tp) { \
(tp)->p_newer = (Thread *)&rlist; \