mirror of
https://git.rtems.org/rtems-tools/
synced 2025-05-14 03:32:17 +08:00
22 lines
355 B
Python
22 lines
355 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()
|
|
rtems.rtems_wdt()
|
|
rtems.rtems_wsec() |