summaryrefslogtreecommitdiffstats
path: root/tools/gdb/python/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/gdb/python/main.py')
-rw-r--r--tools/gdb/python/main.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/tools/gdb/python/main.py b/tools/gdb/python/main.py
new file mode 100644
index 0000000..2ef475a
--- /dev/null
+++ b/tools/gdb/python/main.py
@@ -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() \ No newline at end of file