mirror of
https://git.rtems.org/rtems-tools/
synced 2025-05-14 03:59:16 +08:00
20 lines
318 B
Python
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() |