source: rtems-tools/tools/gdb/python/__init__.py @ b061a67

4.104.115
Last change on this file since b061a67 was b061a67, checked in by Dhananjay Balan <mb.dhananjay@…>, on 07/12/13 at 13:34:37

Heavy refactoring + Improved mesege queu printing.

  • pretty printers moved to the corresponding api_printer module
  • object abstractions moved to
    • their own name for core modules
    • supercore for other supercore objects
    • classic for classic api objects
  • Property mode set to 100644
File size: 548 bytes
Line 
1
2if __name__ == "__main__":
3    import sys
4    import os.path
5    sys.path.append(os.path.dirname(__file__))
6    import supercore
7    import chains
8    import rtems
9    import classic
10    import objects
11    import threads
12
13    import supercore_printer
14    import classic_printer
15
16    # Needed to reload code inside gdb source command
17    reload(supercore)
18    reload(chains)
19    reload(rtems)
20    reload(classic)
21    reload(objects)
22    reload(threads)
23    reload(supercore_printer)
24    reload(classic_printer)
25    print 'RTEMS GDB Support loaded'
Note: See TracBrowser for help on using the repository browser.