summaryrefslogtreecommitdiffstats
path: root/cpukit/include/rtems/score/interr.h
diff options
context:
space:
mode:
authorAndreas Dachsberger <andreas.dachsberger@embedded-brains.de>2019-04-09 11:24:45 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2019-05-13 07:42:03 +0200
commit5ad74fd6d2ee08bc0dd578ed1608f5916b9c9d2c (patch)
tree050f0af967922293ecb7aa6bbdfe53181727f268 /cpukit/include/rtems/score/interr.h
parentRemoved entry from Related Pages (diff)
downloadrtems-5ad74fd6d2ee08bc0dd578ed1608f5916b9c9d2c.tar.bz2
doxygen: score: adjust doc in interr.h to doxygen guidelines
Update #3706.
Diffstat (limited to 'cpukit/include/rtems/score/interr.h')
-rw-r--r--cpukit/include/rtems/score/interr.h31
1 files changed, 18 insertions, 13 deletions
diff --git a/cpukit/include/rtems/score/interr.h b/cpukit/include/rtems/score/interr.h
index 109b2a519b..2348532951 100644
--- a/cpukit/include/rtems/score/interr.h
+++ b/cpukit/include/rtems/score/interr.h
@@ -1,10 +1,12 @@
/**
- * @file
+ * @file
*
- * @brief Constants and Prototypes Related to the Internal Error Handler
+ * @ingroup RTEMSScoreIntErr
*
- * This include file contains constants and prototypes related
- * to the Internal Error Handler.
+ * @brief Constants and Prototypes Related to the Internal Error Handler
+ *
+ * This include file contains constants and prototypes related
+ * to the Internal Error Handler.
*/
/*
@@ -22,14 +24,17 @@
#include <rtems/score/cpu.h>
/**
- * @defgroup RTEMSScoreIntErr Internal Error Handler
+ * @defgroup RTEMSScoreIntErr Internal Error Handler
+ *
+ * @ingroup RTEMSScore
+ *
+ * @brief Internal Error Handler
*
- * @ingroup RTEMSScore
+ * This handler encapsulates functionality which provides the foundation
+ * Semaphore services used in all of the APIs supported by RTEMS.
*
- * This handler encapsulates functionality which provides the foundation
- * Semaphore services used in all of the APIs supported by RTEMS.
+ * @{
*/
-/**@{*/
#ifdef __cplusplus
extern "C" {
@@ -241,9 +246,9 @@ extern Internal_errors_Information _Internal_errors_What_happened;
*
* The final step is to call the CPU specific _CPU_Fatal_halt().
*
- * @param[in] the_source The fatal source indicating the subsystem the fatal
+ * @param the_source The fatal source indicating the subsystem the fatal
* condition originated in.
- * @param[in] the_error The fatal error code. This value must be interpreted
+ * @param the_error The fatal error code. This value must be interpreted
* with respect to the source.
*
* @see rtems_fatal() and _Internal_error().
@@ -257,7 +262,7 @@ void _Terminate(
* @brief Terminates the system with an INTERNAL_ERROR_CORE fatal source and
* the specified core error code.
*
- * @param[in] core_error The core error code.
+ * @param core_error The core error code.
*
* @see _Terminate().
*/
@@ -267,7 +272,7 @@ void _Internal_error( Internal_errors_Core_list core_error ) RTEMS_NO_RETURN;
}
#endif
-/**@}*/
+/** @} */
#endif
/* end of include file */