summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc/stackchk/stackchk.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libmisc/stackchk/stackchk.h')
-rw-r--r--cpukit/libmisc/stackchk/stackchk.h48
1 files changed, 27 insertions, 21 deletions
diff --git a/cpukit/libmisc/stackchk/stackchk.h b/cpukit/libmisc/stackchk/stackchk.h
index e4931715c9..0c7e6c5bb5 100644
--- a/cpukit/libmisc/stackchk/stackchk.h
+++ b/cpukit/libmisc/stackchk/stackchk.h
@@ -1,7 +1,13 @@
-/** @file rtems/stackchk.h
+/**
+ * @file rtems/stackchk.h
+ *
+ * @defgroup libmisc_stackchk Stack Checker Mechanism
+ *
+ * @ingroup libmisc
+ * @brief Stack Checker Information
*
- * This include file contains information necessary to utilize
- * and install the stack checker mechanism.
+ * This include file contains information necessary to utilize
+ * and install the stack checker mechanism.
*/
/*
@@ -32,37 +38,37 @@ extern "C" {
#endif
/**
- * @brief Checks if current task is blown its stack.
+ * @brief Checks if current task is blown its stack.
*
- * This method is used to determine if the current stack pointer
- * of the currently executing task is within bounds.
+ * This method is used to determine if the current stack pointer
+ * of the currently executing task is within bounds.
*
- * @return This method returns true if the currently executing task
- * has blown its stack.
+ * @retval This method returns true if the currently executing task
+ * has blown its stack.
*
*/
bool rtems_stack_checker_is_blown( void );
/**
- * @brief Print the stack usage report using printk.
+ * @brief Print the stack usage report using printk.
*
- * This method prints a stack usage report for the curently executing
- * task.
+ * This method prints a stack usage report for the curently executing
+ * task.
*
- * @note It uses printk to print the report.
+ * @note It uses printk to print the report.
*/
void rtems_stack_checker_report_usage( void );
/**
- * @brief Print the stack usage report using caller's routine.
+ * @brief Print the stack usage report using caller's routine.
*
- * This method prints a stack usage report for the curently executing
- * task.
+ * This method prints a stack usage report for the curently executing
+ * task.
*
- * @param[in] context is the context to pass to the print handler
- * @param[in] print is the print handler
+ * @param[in] context is the context to pass to the print handler
+ * @param[in] print is the print handler
*
- * @note It uses the caller's routine to print the report.
+ * @note It uses the caller's routine to print the report.
*/
void rtems_stack_checker_report_usage_with_plugin(
void *context,
@@ -76,7 +82,7 @@ void rtems_stack_checker_report_usage_with_plugin(
*************************************************************/
/**
- * @brief Stack Checker Task Create Extension
+ * @brief Stack Checker Task Create Extension
*
* This method is the task create extension for the stack checker.
*
@@ -92,7 +98,7 @@ bool rtems_stack_checker_create_extension(
);
/**
- * @brief Stack Checker Task Begin Extension
+ * @brief Stack Checker Task Begin Extension
*
* This method is the task begin extension for the stack checker.
*
@@ -105,7 +111,7 @@ void rtems_stack_checker_begin_extension(
);
/**
- * @brief Stack Checker Task Context Switch Extension
+ * @brief Stack Checker Task Context Switch Extension
*
* This method is the task context switch extension for the stack checker.
*