source: rtems-tools/tools/gdb/python/main.py @ b117be8

4.104.115
Last change on this file since b117be8 was 61154bf, checked in by Dhananjay Balan <mb.dhananjay@…>, on 08/26/13 at 15:26:30

Add watchdog seconds command

  • prints the watchdog chain managed at second boundaries.
  • Property mode set to 100644
File size: 355 bytes
Line 
1#
2# RTEMS GDB Extensions
3#
4# main
5
6import gdb
7import pretty
8import rtems
9
10gdb.pretty_printers = []
11gdb.pretty_printers.append(pretty.lookup_function)
12
13# Register commands
14# rtems and subcommands
15rtems.rtems()
16rtems.rtems_object()
17rtems.rtems_semaphore()
18rtems.rtems_task()
19rtems.rtems_message_queue()
20rtems.rtems_tod()
21rtems.rtems_wdt()
22rtems.rtems_wsec()
Note: See TracBrowser for help on using the repository browser.