summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Dachsberger <andreas.dachsberger@embedded-brains.de>2019-04-16 08:42:21 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2019-05-13 07:42:05 +0200
commit5bb6ac955203878ebdf974e0aa987de3732463ce (patch)
tree031bf3eaa971f6e0afc53d30d7c452b3ee9d282e
parentdoxygen: score: adjust doc in threaddispatch.h to doxygen guidelines (diff)
downloadrtems-5bb6ac955203878ebdf974e0aa987de3732463ce.tar.bz2
doxygen: score: adjust doc in thread.h to doxygen guidelines
Update #3706.
-rw-r--r--cpukit/include/rtems/score/thread.h41
1 files changed, 25 insertions, 16 deletions
diff --git a/cpukit/include/rtems/score/thread.h b/cpukit/include/rtems/score/thread.h
index 79853b8d79..b3cfd91e93 100644
--- a/cpukit/include/rtems/score/thread.h
+++ b/cpukit/include/rtems/score/thread.h
@@ -1,10 +1,12 @@
/**
- * @file
+ * @file
*
- * @brief Constants and Structures Related with the Thread Control Block
+ * @ingroup RTEMSScoreThread
*
- * This include file contains all constants and structures associated
- * with the thread control block.
+ * @brief Constants and Structures Related with the Thread Control Block
+ *
+ * This include file contains all constants and structures associated
+ * with the thread control block.
*/
/*
@@ -54,21 +56,24 @@ extern "C" {
#endif
/**
- * @defgroup RTEMSScoreThread Thread Handler
+ * @defgroup RTEMSScoreThread Thread Handler
+ *
+ * @ingroup RTEMSScore
+ *
+ * @brief Thread Handler
*
- * @ingroup RTEMSScore
+ * This handler encapsulates functionality related to the management of
+ * threads. This includes the creation, deletion, and scheduling of threads.
*
- * This handler encapsulates functionality related to the management of
- * threads. This includes the creation, deletion, and scheduling of threads.
+ * The following variables are maintained as part of the per cpu data
+ * structure.
*
- * The following variables are maintained as part of the per cpu data
- * structure.
+ * + Idle thread pointer
+ * + Executing thread pointer
+ * + Heir thread pointer
*
- * + Idle thread pointer
- * + Executing thread pointer
- * + Heir thread pointer
+ *@{
*/
-/**@{*/
#define RTEMS_SCORE_THREAD_ENABLE_EXHAUST_TIMESLICE
@@ -876,7 +881,11 @@ struct _Thread_Control {
typedef void (*rtems_per_thread_routine)( Thread_Control * );
-/* Use rtems_task_iterate() instead */
+/**
+ * @brief Deprecated, use rtems_task_iterate() instead.
+ *
+ * Use rtems_task_iterate() instead.
+ */
void rtems_iterate_over_all_threads(
rtems_per_thread_routine routine
) RTEMS_DEPRECATED;
@@ -1047,7 +1056,7 @@ Thread_Information name##_Information = { \
} \
}
-/**@}*/
+/** @} */
#ifdef __cplusplus
}