- pretty printers moved to pretty module
 - command and subcommands get own module
This commit is contained in:
Dhananjay Balan
2013-08-20 21:47:22 +05:30
committed by Chris Johns
parent 2c25dc56ed
commit 8d035f8556
5 changed files with 86 additions and 87 deletions

View File

@@ -3,24 +3,6 @@ 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)
import main
print 'RTEMS GDB Support loaded'