summaryrefslogtreecommitdiffstats
path: root/tools/gdb/python/rtems.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/gdb/python/rtems.py')
-rw-r--r--tools/gdb/python/rtems.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/gdb/python/rtems.py b/tools/gdb/python/rtems.py
index 340c7ff..5f0aa7d 100644
--- a/tools/gdb/python/rtems.py
+++ b/tools/gdb/python/rtems.py
@@ -245,3 +245,11 @@ class rtems_wdt(rtems_watchdog_chain):
self.__doc__ = 'Display watchdog ticks chain'
super(rtems_wdt, self).__init__('rtems wdticks')
+class rtems_wsec(rtems_watchdog_chain):
+
+ _class = 'wdseconds'
+
+ def __init__(self):
+ self.__doc__ = 'Display watchdog seconds chain'
+ super(rtems_wsec, self).__init__('rtems wdseconds')
+