summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/watchdogreportchain.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-11-26 16:38:06 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-11-26 16:38:06 +0000
commitc8f7b4e6ca8c9d1c17f2bf6a6278bc4d406b6835 (patch)
tree905e6115a43c8a635388f24a1c4b4adf055333ea /cpukit/score/src/watchdogreportchain.c
parent2008-11-26 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-c8f7b4e6ca8c9d1c17f2bf6a6278bc4d406b6835.tar.bz2
2008-11-26 Joel Sherrill <joel.sherrill@oarcorp.com>
* score/Makefile.am, score/include/rtems/score/watchdog.h: Add _Watchdog_Report and _Watchdog_Report_chain as debug assist routines. They are NOT to be used in directives. * score/src/watchdogreport.c, score/src/watchdogreportchain.c: New files.
Diffstat (limited to 'cpukit/score/src/watchdogreportchain.c')
-rw-r--r--cpukit/score/src/watchdogreportchain.c50
1 files changed, 50 insertions, 0 deletions
diff --git a/cpukit/score/src/watchdogreportchain.c b/cpukit/score/src/watchdogreportchain.c
new file mode 100644
index 0000000000..20a5827f97
--- /dev/null
+++ b/cpukit/score/src/watchdogreportchain.c
@@ -0,0 +1,50 @@
+/**
+ * @file watchdogreportchain.c
+ *
+ * This should only be used for debugging.
+ */
+
+/* COPYRIGHT (c) 1989-2008.
+ * On-Line Applications Research Corporation (OAR).
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.com/license/LICENSE.
+ *
+ * $Id$
+ */
+
+#if HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <rtems/system.h>
+#include <rtems/score/watchdog.h>
+#include <rtems/score/isr.h>
+#include <rtems/bspIo.h>
+
+void _Watchdog_Report_chain(
+ const char *name,
+ Chain_Control *header
+)
+{
+ ISR_Level level;
+ Chain_Node *node;
+
+ _ISR_Disable( level );
+ printk( "Watchdog Chain: %s %p\n", name, header );
+ if ( !_Chain_Is_empty( header ) ) {
+ for ( node = header->first ;
+ node != _Chain_Tail(header) ;
+ node = node->next )
+ {
+ Watchdog_Control *watch = (Watchdog_Control *) node;
+
+ _Watchdog_Report( NULL, watch );
+ }
+ printk( "== end of %s \n", name );
+ } else {
+ printk( "Chain is empty\n" );
+ }
+ _ISR_Enable( level );
+}