mirror of
https://git.rtems.org/rtems-tools/
synced 2025-10-18 03:08:22 +08:00
Intial commit.
Chris's intial work on the extenstions.
This commit is contained in:

committed by
Chris Johns

parent
911e71038c
commit
56a70aec55
16
tools/gdb/python/__init__.py
Normal file
16
tools/gdb/python/__init__.py
Normal file
@@ -0,0 +1,16 @@
|
||||
|
||||
if __name__ == "__main__":
|
||||
import sys
|
||||
import os.path
|
||||
sys.path.append(os.path.dirname(__file__))
|
||||
import chains
|
||||
import rtems
|
||||
import classic
|
||||
import objects
|
||||
import threads
|
||||
reload(chains)
|
||||
reload(rtems)
|
||||
reload(classic)
|
||||
reload(objects)
|
||||
reload(threads)
|
||||
print 'RTEMS GDB Support loaded'
|
Reference in New Issue
Block a user