Dhananjay Balan a245635a2e Add subcommand
rtems tod - prints the time of day.
2014-08-25 09:52:41 +10:00

20 lines
318 B
Python

#
# RTEMS GDB Extensions
#
# main
import gdb
import pretty
import rtems
gdb.pretty_printers = []
gdb.pretty_printers.append(pretty.lookup_function)
# Register commands
# rtems and subcommands
rtems.rtems()
rtems.rtems_object()
rtems.rtems_semaphore()
rtems.rtems_task()
rtems.rtems_message_queue()
rtems.rtems_tod()