summaryrefslogtreecommitdiffstats
path: root/tools/gdb/python/__init__.py
blob: 694eb06bc10e808ef89ea17494d56dfc8f7a43ae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

if __name__ == "__main__":
    import sys
    import os.path
    sys.path.append(os.path.dirname(__file__))
    import supercore
    import chains
    import rtems
    import classic
    import objects
    import threads

    import supercore_printer
    import classic_printer

    # Needed inorder to reload code from inside gdb
    reload(supercore)
    reload(chains)
    reload(rtems)
    reload(classic)
    reload(objects)
    reload(threads)
    reload(supercore_printer)
    reload(classic_printer)

    print 'RTEMS GDB Support loaded'