From f17db1931e95f5ebb42f557b6eead2bf1320db5a Mon Sep 17 00:00:00 2001 From: gdisirio Date: Sat, 6 Feb 2010 10:55:53 +0000 Subject: Reformatted doxygen tags into the kernel sources to make them more readable. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1567 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/kernel/src/chregistry.c | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'os/kernel/src/chregistry.c') diff --git a/os/kernel/src/chregistry.c b/os/kernel/src/chregistry.c index b02d5f1fb..05573acbf 100644 --- a/os/kernel/src/chregistry.c +++ b/os/kernel/src/chregistry.c @@ -18,8 +18,9 @@ */ /** - * @file chregistry.c - * @brief Threads registry code. + * @file chregistry.c + * @brief Threads registry code. + * * @addtogroup registry * @{ */ @@ -36,7 +37,7 @@ * @note This function cannot return @p NULL because there is always at * least one thread in the system. * - * @return A reference to the first thread. + * @return A reference to the first thread. */ Thread *chRegFirstThread(void) { Thread *tp; @@ -52,9 +53,9 @@ Thread *chRegFirstThread(void) { * @details The reference counter of the specified thread is decremented and * the reference counter of the returned thread is incremented. * - * @param[in] tp pointer to the thread - * @return A reference to the next thread. - * @retval NULL if there is no next thread. + * @param[in] tp pointer to the thread + * @return A reference to the next thread. + * @retval NULL if there is no next thread. */ Thread *chRegNextThread(Thread *tp) { -- cgit v1.2.3