- pretty printers moved to pretty module
 - command and subcommands get own module
This commit is contained in:
Dhananjay Balan
2013-08-20 21:47:22 +05:30
committed by Chris Johns
parent 2c25dc56ed
commit 8d035f8556
5 changed files with 86 additions and 87 deletions

19
tools/gdb/python/main.py Normal file
View File

@@ -0,0 +1,19 @@
#
# 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()