aboutsummaryrefslogtreecommitdiffstats
path: root/os/kernel/include/registry.h
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-02-06 12:31:09 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-02-06 12:31:09 +0000
commit8e428dbd1a48615c36c8c086dd51079050c9fb1c (patch)
treed1c7168826614acb1925e997915a010f3c4d999b /os/kernel/include/registry.h
parentf17db1931e95f5ebb42f557b6eead2bf1320db5a (diff)
downloadChibiOS-8e428dbd1a48615c36c8c086dd51079050c9fb1c.tar.gz
ChibiOS-8e428dbd1a48615c36c8c086dd51079050c9fb1c.tar.bz2
ChibiOS-8e428dbd1a48615c36c8c086dd51079050c9fb1c.zip
Kernel headers cleanup.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1568 35acf78f-673a-0410-8e92-d51de3d6d3f4
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; \