X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=kern%2Fmonitor.h;h=bbed637ceb8e1cff35ad825168235cde0feaa581;hb=753d17c6975a0edd44fd771f1af01d95a61d292a;hp=3703641fe66d14bb72ee7c71dbb8768cf2328b2a;hpb=7f5d3d3799955d4ef380bb9199a8e32c6dc72ae1;p=bertos.git diff --git a/kern/monitor.h b/kern/monitor.h old mode 100755 new mode 100644 index 3703641f..bbed637c --- a/kern/monitor.h +++ b/kern/monitor.h @@ -1,8 +1,33 @@ -/*! +/** * \file * * * \brief Monitor to check for stack overflows @@ -14,6 +39,9 @@ /*#* *#* $Log$ + *#* Revision 1.5 2006/07/19 12:56:27 bernie + *#* Convert to new Doxygen style. + *#* *#* Revision 1.4 2006/02/24 01:17:05 bernie *#* Update for new emulator. *#* @@ -35,12 +63,12 @@ #ifndef KERN_MONITOR_H #define KERN_MONITOR_H -#include +#include #include #if CONFIG_KERN_MONITOR -/*! +/** * Start the kernel monitor. It is a special process which checks every second the stacks of the * running processes trying to detect stack overflows. * @@ -53,7 +81,7 @@ void monitor_start(size_t stacksize, cpustack_t *stack); -/*! +/** * Manually check if a given stack has overflown. This is used to check for stacks * of processes handled externally form the kernel, or for other stacks (for instance * the interrupt supervisor stack). @@ -64,7 +92,7 @@ void monitor_start(size_t stacksize, cpustack_t *stack); size_t monitor_checkStack(cpustack_t *stack_base, size_t stack_size); -/*! Print a report of the stack status through kdebug */ +/** Print a report of the stack status through kdebug */ void monitor_report(void);